WebOSDev - Programming has just evolved

The online blog for the webOS developer community you can find everything you need here to get a strong start developing applications for the webOS platform

How to Make SwipeToDelete Dynamic

Posted by codesos Saturday, April 3, 2010 0 comments
You have to declare in th attributes of the list swipeToDelete: true  to allow the list to delete items , but add this preventDeleteProperty:'noDelete'  also if you want the list to be able to determine which items can be deleted or not. so for example:var attributes ={    itemTemplate: 'food-filter-list/entry',    swipeToDelete: true,    preventDeleteProperty:'noDelete',   ...