I am trying to create a grid which will not have any second band rows yet. The rows of second band will only be displayed (via Ajax) until the user clicks "plus" button.
Does UltraWebGrid has any function to fulfill my requirement? If no, how to handle "plus" click event to run my custom code?
Any help would be appreciated.
My question seems to be asked at http://ko.infragistics.com/community/forums/t/41003.aspx
It is still open since we have an error at row.addNew(); "Object doesn't support this property or method"
The following snippet worked for me
//set the active row var row = igtbl_getRowById(rowID); igtbl_setActiveRow(gridID, row.Element);
//add a new second band row var newRow = igtbl_addNew(gridID, 1);