Is there a recommend way to copy the data, headers and all styling from one instance of a grid to another?
So something like:
Or is a step by step B.setDate(A.getData()) of all the parts of A that one wants to copy to B ?
So something like:
Code:
ListGrid A = new ListGrid () { overloaded grid methods specific to this grid type } ; A.set (any or most set functions ) A.setData( records); ListGrid B = A.copy();
Comment