http://www.sencha.com/products/extjs/up-and-running/extjs-hello-world The output is here: http://xoroz.com/test/extjs.html Very cool demo examples: organizer Desktop (amazing) Executive-dashboard Welcome to Ext JS! More Examples: http://dev.sencha.com/ext/5.0.0/examples/index.html]]>
Javascript CREATING OBJECTS AND METHODS
(function() { //variables defined here will disappear after it ends //same happen with invoed functions within var localVar = .. ; function localFunc() { localVar = 99; //uses the previously variable that can be used within last function } localFunc() […]
