1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ext.application({ name : 'Traccar', launch : function() { Ext.create('Ext.Panel', { renderTo : Ext.getBody(), width : 200, height : 150, bodyPadding : 5, title : 'Hello World', html : 'Hello <b>World</b>...' }); } });