jQWidgets Forums
Forum Replies Created
-
Author
-
March 12, 2015 at 5:38 pm in reply to: Jqx Grid not working in IE8 Jqx Grid not working in IE8 #68433
Hi Peter,
JQX grid does not show any data in IE8 when binding to an observable array (there are empty rows only with column headers). It does not throw any error. I tried it with your sample here but that too has the same problem.
Please advise.
Regards,
Nadeem UllahMarch 12, 2015 at 5:35 pm in reply to: Uncaught Error: Invalid jQuery Selector Uncaught Error: Invalid jQuery Selector #68432I found out the issue and yes, the element was not yet loaded because there was some issue in HTML syntax and IE8 is strict about it and it was not rendering the html at all. Corrected the syntax and the error was gone.
But there is another issue with JQX grid on IE8. I posted details to another post here.
March 9, 2015 at 5:42 pm in reply to: Uncaught Error: Invalid jQuery Selector Uncaught Error: Invalid jQuery Selector #68224Hi Peter,
I am getting the same error but it happens even before we instantiate the grid (error is thrown when script is included as a RequireJS dependency). This is happening only in IE8 browser, other browsers are fine. It is not mentioning the name of selector in the message, so the error message is “Invalid Selector! Please, check whether the used ID or CSS Class name is correct.”
Any ideas?
Regards,
Nadeem UllahMarch 5, 2015 at 8:54 pm in reply to: JQXGrid rendering in virtual mode with local data JQXGrid rendering in virtual mode with local data #68100Thanks Peter,
After comparing with the sample, I fixed it as below in “renderingrows” function. The returned array needs to have the same indices as given in params parameter. Earlier, I was using “slice” method on my data array where resulting array always starts with a 0 index.
renderingRowsFun: function(params){ var range = {}; for(var i = params.startindex; i <= params.endindex; i++){ range[i] = yourData[i]; } return range; }
-
AuthorPosts