如何在sencha touch中显示列表项边框
How to display list item border in sencha touch
谁能告诉我如何在 sencha touch 中显示列表项边框。下面的代码我已经实现默认边框不用于列表
{
xtype:'list',
height: '80%',
store:'SearchStore',
itemTpl : '<img src="{country}" width="30" heigh="30"></img><span>{name} </span>',
}
我试过代码。您可以做的一些修改是:
{
xtype: 'list',
store: 'SearchStore',
itemTpl: [ // It works perfectly
'<div>',
' <img style="width:30px;height:60px;vertical-align:middle" src="{country}">',
' <span style="">{name}</span>',
'</div>'
].join('')
}
你的错误:(虽然它可能不会造成那个问题)
height
身高
有额外的 </img>
标签。
如果您遇到任何问题,请告诉我。 (并分享截图)
谁能告诉我如何在 sencha touch 中显示列表项边框。下面的代码我已经实现默认边框不用于列表
{
xtype:'list',
height: '80%',
store:'SearchStore',
itemTpl : '<img src="{country}" width="30" heigh="30"></img><span>{name} </span>',
}
我试过代码。您可以做的一些修改是:
{
xtype: 'list',
store: 'SearchStore',
itemTpl: [ // It works perfectly
'<div>',
' <img style="width:30px;height:60px;vertical-align:middle" src="{country}">',
' <span style="">{name}</span>',
'</div>'
].join('')
}
你的错误:(虽然它可能不会造成那个问题)
height
身高有额外的
</img>
标签。
如果您遇到任何问题,请告诉我。 (并分享截图)