I'm feeling newbish because after an hour of Googling and poking around, I can't find basic documentation on what Javascript functions are available for the .NET control set (grid in this case). I see a CSOM Reference Guide section in the main documentation tree, but am not finding it helpful.
I'm looking for a simple listing of the common functions that would pop up in "get an item and then do things with it" scenarios. For example,
igedit_getById
igxxx_xxxxx
I see snippets with this type of utility function all over, but no documentation of the functions. Help is appreciated.
In my particular case I need to resize a WebDataGrid on the client. I also have JQuery available in my app, so if there's no easy Infragistics answer I'm open to that.
Thanks.
Alex,
var grid = $find("WebDataGrid1"); doesn't work when the grid is embedded in a tab and the data source is being changed at run time.
You cannot use this code:
var grid = $find("<%=WebDataGrid1.ClientID %>");
because it gives you this error:
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
Can you suggest another way to refer to the grid in this case?