我有一个转发器。我正在给出一个方法。就像我想给每行的擦拭方法不同。
{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转发器中,我给了 ontap:“tapped”。现在我想要onswipe.both我想要这个转发器。
答案 0 :(得分:0)
如果您在谈论Enyo 2.0,则转发器不支持可滑动的行。如果您想尝试创建自己的,可以在List实现中查看prepareRow / LockRow。您还可以查看Enyo 1.0源代码,了解如何实现可滑动的行。
更新:WIP包中有一个swipeableItem。这不是'生产就绪',但你可以尝试一下,看看它是否适合你的需求。