The following tables list the members exposed by GridColumnMovingClientEvents.
Name | Description | |
---|---|---|
ColumnDragCanceled | Event which is fired when a drag operation is canceled. Use args.columnKey to get the column key of the column that was being dragged. Use args.columnIndex to get the column index of the column that was being dragged. Use args.owner to get a reference to the widget. Use args.header to get a reference to the orginal th that was being dragged. Use args.helper to get a reference to cloned DOM element that was actually being dragged. | |
ColumnDragEnd | Event which is fired when a drag operation ends on a column header. Use args.columnKey to get the column key of the column that was being dragged. Use args.columnIndex to get the column index of the column that was being dragged. Use args.owner to get a reference to the widget. Use args.header to get a reference to the orginal th that was being dragged. Use args.helper to get a reference to cloned DOM element that was actually being dragged. | |
ColumnDragStart | Event which is fired when a drag operation begins on a column header. Use args.columnKey to get the column key of the column being dragged. Use args.columnIndex to get the column index of the column being dragged. Use args.owner to get a reference to the widget. Use args.header to get a reference to the orginal th being dragged. Use args.helper to get a reference to cloned DOM element that's actually being dragged. | |
ColumnMoved | Event which is fired when a column moving operation completes. Use args.columnKey to get the column key of the column that was moved. Use args.oldIndex to get the previous column index of the column that was moved. Use args.newIndex to get the new column index of the column that was being moved. Use args.owner to get a reference to the widget. | |
ColumnMoving | Event which is fired when a column moving operation is initiated. Use args.columnKey to get the column key of the column that was being moved. Use args.columnIndex to get the column index of the column that was being moved. Use args.targetIndex to get the new column index of the column that was being moved. Use args.owner to get a reference to the widget. | |
MovingDialogClosed | Event fired after the moving dialog has been closed. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialogElement to get a reference to the moving dialog element. This is a jQuery object. | |
MovingDialogClosing | Event fired before the moving dialog is closed. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialogElement to get a reference to the moving dialog element. This is a jQuery object. | |
MovingDialogContentsRendered | Event fired after the contents of the model dialog are rendered. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. | |
MovingDialogContentsRendering | Event fired before the contents of the model dialog are rendered. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. | |
MovingDialogDragColumnMoved | Event fired when column moving is completed through dragging it in the moving dialog. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. Use ui.columnKey to get the column key of the column that was being moved. Use ui.columnIndex to get the column index of the column that was being moved. Use ui.targetIndex to get the new column index of the column that was being moved. | |
MovingDialogDragColumnMoving | Event fired when column moving is initiated through dragging it in the moving dialog. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. Use ui.columnKey to get the column key of the column that was being moved. Use ui.columnIndex to get the column index of the column that was being moved. Use ui.targetIndex to get the new column index of the column that was being moved. | |
MovingDialogDragged | Event fired every time the moving dialog changes its position. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialogElement to get a reference to the moving dialog element. This is a jQuery object. Use ui.originalPosition to get the original position of the moving dialog div as { top, left } object, relative to the page. Use ui.position to get the current position of the moving dialog div as { top, left } object, relative to the page. | |
MovingDialogMoveDownButtonPressed | Event fired when move down button is pressed in the moving dialog. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. Use ui.columnKey to get the column key of the column that was being moved. Use ui.columnIndex to get the column index of the column that was being moved. Use ui.targetIndex to get the new column index of the column that was being moved. | |
MovingDialogMoveUpButtonPressed | Event fired when move up button is pressed in the moving dialog. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialog to get a reference to the Moving Dialog element. This is a jQuery object. Use ui.columnKey to get the column key of the column that was being moved. Use ui.columnIndex to get the column index of the column that was being moved. Use ui.targetIndex to get the new column index of the column that was being moved. | |
MovingDialogOpened | Event fired after the column chooser is already opened. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialogElement to get a reference to the moving dialog element. This is a jQuery object. | |
MovingDialogOpening | Event fired before the moving dialog is opened. The handler function takes arguments evt and ui. Use ui.owner to get the reference to the igGridColumnMoving widget. Use ui.owner.grid to get the reference to the igGrid widget. Use ui.movingDialogElement to get a reference to the moving dialog element. This is a jQuery object. |
View on GitHub