elishnevsky
16 Jul 2010, 11:36 AM
Hi,
There is an angle bracket missing in the template in Panel.js line 67 right after </tpl>. It results in an incorrect rendering. Sencha Touch version 0.91. Here is what it should be:
renderTpl: new Ext.XTemplate(
'<div <tpl if="id">id="{id}"</tpl> class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl>" <tpl if="style"> style="{style}"</tpl>>',
'<div class="{baseCls}-body"<tpl if="bodyStyle"> style="{bodyStyle}"</tpl>></div>',
'</div>',
{compiled: true}
),
Thanks.
There is an angle bracket missing in the template in Panel.js line 67 right after </tpl>. It results in an incorrect rendering. Sencha Touch version 0.91. Here is what it should be:
renderTpl: new Ext.XTemplate(
'<div <tpl if="id">id="{id}"</tpl> class="{baseCls} {cls} {cmpCls}<tpl if="ui"> {uiBase}-{ui}</tpl>" <tpl if="style"> style="{style}"</tpl>>',
'<div class="{baseCls}-body"<tpl if="bodyStyle"> style="{bodyStyle}"</tpl>></div>',
'</div>',
{compiled: true}
),
Thanks.