|
Title: Combo grid is loading data in development but not after deployment Post by: ksd on February 28, 2013, 01:52:08 AM I am using JQuery Easy UI combogrid in ASP.NET MVC 4. In VS 2010 development environment data loading and the auto completing is happening correctly. But not when the site is published in IIS 7. I can show an alert before calling $.ajax() in the easyui.min.js file before loading or auto completing data into the combogrid in VS 2010 development environment. But when same alert added easyui.min.js is deployed to the server, no alerts shown. No data loaded. No auto completion. Can any body help plz ?? Title: Re: Combo grid is loading data in development but not after deployment Post by: ksd on February 28, 2013, 10:55:42 PM Hi all,
At last solved it my self. This is for when we using combogrid for ASP.NET MVC with Razor view engine. Use the following format for giving path to the url attribute in the combogrid. url: '@Url.Content("~/")' + 'Receipt/GetCustInfo', This will solve the path identifying problems in any way we publish in IIS. Thank you all for viewing. Hope this will help in a similar scenario. |