Hello,
we used to minify our own javascript files with Mircosoft AjaxMin, is it possible to minify the Infragistics Components loaded dinamically via
http://webserver/WebResource.axd?d=VxlsSt5lGoLzJikKRKUzYw2&t=634219608385430363 ?
Kind Regards
Thanks for the response, Mike.
I have indeed read through those links previously.
We are running our application on the Intranet and CDN is not recommended for Intranet applications.
Does Infragistics provide the minified javascript and css files (using something like yuicompressor) to be built into the assembly?
David
Hello David,
Thank you for the update. When you referenced jQuery I thought you were referring to the Ignite UI product. For the ASP.NET product the javascript is built into the assembly(dll) itself. Concerning deployment I recommend you look ta the following:
http://help.infragistics.com/NetAdvantage/ASPNET/2012.2/CLR4.0/?page=Web_Deploying_Your_Application.html
http://help.infragistics.com/NetAdvantage/ASPNET/2012.2/CLR4.0/?page=Web_Infragistics_Content_Delivery_Network_CDN.html
Sincerely, Mike P. Developer Support Engineer II Infragistics, Inc. www.infragistics.com
Is IgniteUI the same as Infragistics NetAdvantage for ASP.NET?
The default installed versions of the Ignite UI js files are minified. You get the unminified ones you have to extract them from a file that is by default installed to the following location:
C:\Program Files (x86)\Infragistics\IgniteUI 2012.2
The minified versions are installed to the following by default:
C:\Program Files (x86)\Infragistics\IgniteUI 2012.2\js
Sincerely,Mike P.Developer Support Engineer IIInfragistics, Inc.www.infragistics.com
Does Infragistics provide versions of scripts that are already minified similar to what jquery provides?
Example: jquery-1.9.1.js - 268,381 bytes jquery-1.9.1.min.js - 92,629 bytes
The minified/compressed version of jquery reduces the file size by over 65%. Combine this with IIS compression and the results are very large.
Thank you for your help!