Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Brian on Feb 20, 2008 10:49
open dhtmlx forum
how do I unsplit

if I use the mygrid.splitAt(1) option is there a way to undo this split?
Answer posted by Support on Feb 21, 2008 10:15
Split can't be reverted, you need to fully destruct grid and construct one
    grid.destructor();
    grid = new dhtmlXGridObject(id);
    ....