Hi All,
I need to add child rows to the parent row in an Ultrawebgrid when the user clicks on the Expand [+] button. This needs to be done in the Javascript. I am making an Ajax call and getting the child rows data. How can I achieve this? Please reply as soon as possible as it is blocking further development. Thank you.
I have the same problem which was posted at http://ko.infragistics.com/community/forums/p/78768/397830.aspx#397830
The following snippet worked for me
//set the active rowvar row = igtbl_getRowById(rowID);igtbl_setActiveRow(gridID, row.Element);
//add a new second band rowvar newRow = igtbl_addNew(gridID, 1);
I am getting error "Object does not support this property or method" at the Addrow statement. Please provide support at the earliest.
grid = igtbl_getGridById( grid_id );
(grid.Rows.length > 0)
{
i=0;i<grid.Rows.length;i++)
rowBand1 = grid.Rows.getRow(i);
).getValue()==assetClassTest)
rows = rowBand1.getChildRows();
rows.addNew();
;
Could you attach any sample so we can see what is going on?
Thanks,
I tried calling invokeXmlHttpRequest in the client side also to populate the child rows. But the server side handler function uwgViolations_XmlHTTPRequest is not getting called.