I have a repeater .On which intap I am giving a method.Like that I want to give different method onswipe of each row.
{kind: "Scroller",classes:"enyo.fit",touch:true,style: "width: 314px; height:380px;",components: [
{kind: "Repeater", onSetupItem:"setupItem", components: [
{name:"item",classes:"repeaterdesign" ,components: [
{tag:"span", name: "DetailName",ontap: "tapped"}
]}
]}
]},
In the above In repeater I have given ontap: "tapped" .Now I want onswipe.both I want in this repeater.