Touch actions for lists

List are very interesting elements to work with. I suggest to provide them interesting actions as well :

Quick touch => an action is triggered

You can set onItemClick event:

$$("list").attachEvent("onItemClick",function(id){ //your code })

Long touch => a custom select menu is triggered

[code]

$$(“list”).attachEvent(“onLongTouch”,function(elem,x,y){
var id = this.locate(elem);
// your code
})[/code]

Drag&drop to move an entry up or down in the list.

Touch library does not support drag-n-drop. Views are scrolled on “swipe” event.

Thanks you Alexandra.
Hoping Drag&drop can be take into account in the future