Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
ig-webmenu.js
posted

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.

Parents
No Data
Reply
  • 12679
    Verified Answer
    posted

    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

Children