Swipe ListView items for more action items, usually seen in native apps for swiping to delete. See more capabilities with iOS8 demo for swiping left or right to show multiple action options: http://www.iclarified.com/images/news/41344/183731/183731-1280.png
Please contact our support team at telerik.com in case you need further technical advice/assistance.
How to add multiple buttons? The link demonstrate adding single delete button.
What an awful hack... manually handling swipe visibility and fx? find closest button? event canceling? stop propagation? I was hoping for this to be a feature and part of the API as so: <script id="itemTemplate" type="text/x-kendo-template"> <a> #=ProductName# </a> <a data-role="swipebutton" data-action="delete" data-style="rowdelete">Delete</a> <a data-role="swipebutton" data-action="flag" data-style="rowwarning">Flag</a> </script> e.view.element.find("#list-edit-listview").kendoMobileListView({ dataSource: dataSource, template: $("#itemTemplate").html(), swipe: function(e) { switch(e.action) { case 'delete': ... break; case 'flag': ... break; } } })
How to attain the requested functionality is presented in the following demo: http://demos.telerik.com/kendo-ui/mobile-listview/editing