Search code examples
data-bindingonclicktitaniumappcelerator

Titanium Appcelerator Listview onItemLongclick alternative?


DATABINDING

How can I assign events like onItemclick to Listview items but instead of it behaving like onClick" I want something like "onLongClick" or "onSwipe", is there any workaround to this?

<ListView id="userList" defaultItemTemplate="user" onItemclick="deleteProfile"> 
        <Templates>

            <ItemTemplate bindId="user" name="user">
                <Label bindId="name" class="name"/>
            </ItemTemplate>

        </Templates>

        <ListSection id="section" dataCollection="users">
            <ListItem template="user" user:id="{id}" user:adresse="{adresse}" name:text="{author}"/>
        </ListSection>

</ListView>

Solution

  • ListView doesn't have Longpress event. You'll need to switch to TableView instead to get that to work.