Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

Click Event on TableView in Edit Mode

I have a TableView which the use can put in edit mode. The click even fires when a user touches a row, except when the TableView is in edit mode. I still need the click event to fire even if the TableView is in edit mode.

Any suggestions?

— asked November 29th 2010 by Darrell Davis
  • click
  • iphone
  • tableview
1 Comment
  • Did you ever find a solution to this? I need to do the same thing.

    — commented December 9th 2010 by Craig Colvin

1 Answer

  • use allowsSelectionDuringEditing property.

    var self = Ti.UI.createTableView({
            editable:true,
            allowsSelectionDuringEditing:true
        });
    
    — answered March 31st 2012 by JongEun Lee
    permalink
    0 Comments
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.