我需要在以下屏幕中建模Sencha Touch Architect
;
左上角的图像。在右上角有一个文本 ( Custom Tailored Clothing
) 和它下方的按钮。我该如何为此编写 HTML?
到目前为止我的工作;
<img src="{url}" height="50" width="50"/>
<b>Custom Tailored Clothing</b>
但是,文本Custom Tailored Clothing
出现在图像下方,而不是我想要的侧面。我的按钮也有同样的问题。有人可以帮助我处理 HTML。
更新
参数不清楚:dataview, index, target, record, e, eOpts
onNewsItemTap: function(dataview, index, target, record, e, eOpts) {
if (senchaEvent.event.target.nodeName === 'BUTTON') {
var form = Ext.create("MyApp.view.DV",{
title:record.data.Name_mine,
record:record
});
this.getMainView().push(form);
} else {
console.log("dfdfd");
}
},...