I am creating a handful of Grids in MVC. I notice that Document.Ready is called pretty quickly but the ig.loader takes quite a while.
In FireFox this is an issue because it is taking longer than 10 seconds for the grids to render.
The Razor code executes quickly. Other than changing the design of the page to create everything in javascript, instead of creating the grids in MVC, is there anyway to control when the infragistics code takes a breather to avoid the script running to long message?
At this point it looks like the databind call,
I am wondering if converting it to call back into my controller via a GridDataSourceAction, or a WebService would help.
Do you have any suggestions, or samples to point me to?
I have been able to call back into the controller, I believe that will solve the problem
Hello ddally,
Thank you for contacting Infragistics!
I have a few questions concerning this matter. What version of NetAdvantage are you using? What scripts are you loading in with the loader? How are you using the loader? Did the call back into the controller solve the problem for you?
Sincerely,Mike P.Developer Support Engineer IIInfragistics, Inc.www.infragistics.com
Yes,
Moving away from the MVC model allowed me greater control and solved the problem I was having.
Thanks,
I am following up to see if this matter has been resolved. If this isn’t the case please let me know what questions you have concerning this matter.
Please let me know if I may be of further assistance with this matter.
Thank you for the update. I am glad to hear that using JavaScript for the igGrid is working for you. Do you have any further questions concerning this matter?
Sorry had a typo -- It was supposed to say -- javascript version is NOW manageable
Generally I only have 2 - 3 records per grid. I have a set of maybe 30 - 40 physicians in a hospital with each being assigned a handful of patients.
Moving to javascript/html only was not that difficult, in fact I find it perhaps a better way to keep full control of the calls I am making. I have some improvement to do but the javascript version is not manageable, only because I can keep the page responsive because I am in control of when I created each grid.