Hi, I would like to know how to force my web app to point to ig_webmenu.js that is in /ig_common/Scripts folder. Currently, the script file is compiled as WebResource dynamic file upon loading. I need it for debugging purpose.
I'm able to point to uncompiled ig_webgrid.js by simply including it in my aspx file, but cannot do it with ig_webmenu.js.
Thanks - Joe.
If I want to replace one just js file throughout my application is there a way to do it. I don't want to do it on individual control or have all scripts in one folder.
For eg. I want to only move ig_webgrid.js in my project script folder and have all grids reference this js file.
thanks
Thanks, it works.
For some reason, when we upgraded to the new control version, my colleague got a feedback from the Support team that JavaScriptFilename method is obsolete. That's why I did not attempt to use it earlier.
ello jhauw,
The control has a property called JavaScriptFilename which states : Returns or sets a string of text that determines the name of the file that contains the external JavaScript for client-side functionality. It means if you specify the js file from the common folder it will be used on the client instead the resource js.
If you want this for debugging purposes you can try to debug the client – side script through the resource file easily if you use IE and run the Visual Studio in debug mode. In this way the resource js file sent down to the client will be the debug version which is readable one, not minified.
Hope this helps