Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
35
[UltraWebGrid] Load second band on demand
posted

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.

Parents
No Data
Reply
  • 35
    Verified Answer
    posted

    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);

Children
No Data