Expand row by row click?

By default sub_row_ajax is expandable by clicking on “+” sign. Can You please tell me how to make it so it will be expandable by clicking on row ?

mygrid.attachEvent(“onRowSelect”,function(id){
    mygrid.cells(id,INDEX).open();
    return true;
});

where INDEX - index of column in which sub_row excell placed

Works like charm! Thank You :slight_smile: