Rows Drag
Preface
There are 2 row dragging approaches: row and rows.
The main difference between them is that for rows dragging it requires to use multi rows selection.
Row Dragging
To enable row dragging it requires to add column rowdrag
and selModel: 'row'
.
Example
new FancyGrid({
...
selModel: 'row',
columns: [{
type: 'rowdrag'
}, {
...
Sample: Row Dragging
Rows Dragging
To enable rows dragging it requires to add column rowdrag
, selModel: 'rows'
and column select
.
Example
new FancyGrid({
...
selModel: 'rows',
columns: [{
type: 'rowdrag'
}, {
type: 'select'
}, {
...
Sample: Rows Dragging