Hi ...
I have a huge java script files like some 10 files of 4000 line each i just want to split them based on functionality basis and want to load them asynchronously... I almost did this but stuck in the middle...I am posing a sample code and explain you what im trying to do..
Here Goes my Html...(Home Page)
<link href="css/ui-lightness/jquery-ui-1.8.18.custom.css" rel="stylesheet" type="text/css" />
<script src="Scripts/jq_Common.js" type="text/javascript"></script>
<script src="Scripts/App.js" type="text/javascript"></script>
<div id="Arun">Testing Of Asyncronous Javascript Loading</div>
<script type="text/javascript">
Main.Loader.CheckScript('SampleWidget', function () {
mjQuery('#Arun').SampleWidget(); //Trying to Load a sample Widget
});
</script>
About the first two script files jq_common.js and App.js
1.jq_common.js Like i told u earlier i don't want all the java script files to be loaded in the page load it self ,including the j query so i in this jq_common.js file i have the code of only the j query core library and the j query ui core and the j query widget.
2.App.js**
if (typeof Main== 'undefined') { Main= {}; //Creating a Main Object } Main.Loader = { CheckScript: function (WidgetName, _CallBackFunction) { switch (WidgetName) { case 'SampleWidget': if ($.ui.SampleWidget == undefined) { this.LoadScript('http://localhost:56155/jQuery%20Ui%20Widget%20Example/Scripts/SampleWidget.js', _CallBackFunction); } else { _CallBackFunction(); } break; case 'Dialog': if ($.ui.dialog == undefined) { this.LoadScript('http://localhost:56155/jQuery%20Ui%20Widget%20Example/Scripts/jq_Dialog.js', _CallBackFunction); } else { _CallBackFunction(); } break; } }, LoadScript: function (src, callbackfunction) { var oHead = document.getElementsByTagName('head')[0]; if (oHead) { var script = document.createElement('script'); script.setAttribute('src', src); script.setAttribute('type', 'text/javascript'); script.setAttribute('async', false); var loadFunction = function () { if (this.readyState === 'complete' || this.readyState === 'loaded') callbackfunction(); }; script.onreadystatechange = loadFunction; script.onload = callbackfunction; var a = script.onload; console.log('from load script'+a); oHead.appendChild(script); } } };
The goal of this Loader function is to check for the widget if it is there (means available in $.ui then execute the call back function or else load the script and then execute the call back function So, Now from my html i am trying to load a Sample widget Here Goes my Sample Widget.
(function ($) {
var SampleWidget_NS = {
options: {
},
_tempDialog: 123,
_create: function () {
var self = this;
//Loading the Dialog functionality seperatily from other file
Main.Loader.CheckScript('Dialog', function () {
this._tempDialog =$(self.element).dialog({ modal: true, autoOpen: false });
});
},
_init: function () {
this._openPinCodePopUp();
},
_openPinCodePopUp: function () {
//console.log(this._tempDialog); this.__tempDialog has 123 only
this._tempDialog.dialog('open');
}
};
$.widget('ui.SampleWidget', SampleWidget_NS);
})(jQuery);
Now all i need is the correct reference of the _tempDialog which i want to use later in this widget (_openPinCodePopUp) but somwhow the _tempDialog contains only the value 123 not the dialog reference. Is there any Way to work this one.