Hello all,
I'm very new to Sencha and today I'm trying to build my first ever Sencha app. However, when I write following code, I still can't see a button on the screen. Please help.
Code:<script language="javascript" type="text/javascript"> Ext.setup({ onReady: function () { alert("Demo Starting"); Ext.Button({ text: 'Sumbit Dude', maxWidth: 300, maxHeight: 50 }); } }); </script>