What does this mean in javascript?
I have just started using ext-js. And the first line in sample header file is
Ext.require('Ext.tab.*');
What does this mean ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That call is used for dynamic loading of classes/scripts:
Ext – Sencha Docs – Ext JS 4.0
So your call is dynamically loading all of the classes in the Ext.tab namespace (since you’re using a wildcard expression).