Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Mar 14, 2007 14:54
open dhtmlx forum
I have a question about dhtmlxGrid. The documentation talks about columns that can be dragged. I see t...

I have a question about dhtmlxGrid.

The documentation talks about columns that can be dragged. I see that the column widths can be set by dragging, but I would like to change the column order by dragging, i.e.

column1 column2 column3

can be changed by dragging to:

column2 column1 column3

Is this possible?

Answer posted on Mar 14, 2007 14:55

Yes, it is possible by using enableColumnMove method.

For example:

grid.enableColumnMove(true,list_of_Columns)

//list_of_Columns - list of movable columns (all by default)

 

There is a moveColumn method(oldIndex,newIndex) method which moves column from oldIndex to newIndex position.

 

To use this functionality, you need to include:

                dhtmlxGrid_mcol.js

( available in pro version only )

 
Please refer to

                samples/pro_grid_moveCol.html
Answer posted by sematik (Support) on Dec 10, 2014 03:45

Not much can be said in addition to the reply above, but you also can check schedule component and ajax upload control and find out what we have probably missed in our explanation.