Image buttons in Sencha Touch?
Application JavaScript:Code:
Ext.setup({ onReady: function() { var rootPanel = new Ext.Panel({ fullscreen: true, dockedItems:[{ xtype: 'toolbar', dock: 'top', items: [{ xtype: 'button', cls: 'btnAction' }] }] }); } });
CSS:
Code:
.btnAction { background: url(../action.png); width: 40px; height: 40px; }
Posted by 홍반장