我有一個html模板元素。即使我已經配置第一個,它仍然在視圖底部加載。我想把它放在視圖的頂部。任何想法? tpl
是模板元素在sencha touch中放置html模板頂部視圖
我的代碼
config: {
title: 'Info ',
styleHtmlContent: true,
scrollable: true,
tpl: ['<table><tr><td><img src="{image}" height="60" width="60" id="{id}" /></td></tr>',
'<tr><td>{model}</td></tr>',
'<tr><td>{price}</td></tr>',
'<tpl for="color">',
'<tpl for="infos">',
'<tr><td>{name}: <tpl for="item_names"> ],
store: 'Item',
items:[
{
xtype: 'fieldset',
items : [
{
xtype : 'selectfield',
name : 'quantity',
label:'Quantity',
id: 'quantity'
},{
other elements
}
]
}
]
我給出該視圖時未加載我的視圖。 – Harikrishnan
你可以在sencha小提琴上託管你的代碼嗎? – Tejas
你也可以設置,樣式:'margin-top:0%;' 試試這個,讓我知道它的工作與否。 – Tejas