Row Dragging in Web Components Hierarchical Grid

    The Ignite UI for Web Components Row Dragging feature in Web Components Hierarchical Grid is easily configurable and is used for rearranging rows within the grid by dragging and dropping them to a new position using the mouse. It is initialized on the root IgcHierarchicalGridComponent component and is configurable via the rowDraggable input.

    Web Components Hierarchical Grid Row Drag Example

    Configuration

    In order to enable row-dragging for your IgcHierarchicalGridComponent, all you need to do is set the grid's rowDraggable to true. Once this is enabled, a row-drag handle will be displayed on each row. This handle can be used to initiate row dragging. Clicking on the drag-handle and moving the cursor while holding down the button will cause the grid's RowDragStart event to fire. Releasing the click at any time will cause RowDragEnd event to fire.

    <igc-hierarchical-grid row-draggable="true">
    </igc-hierarchical-grid>
    

    Templating the Drag Icon

    The drag handle icon can be templated using the grid's dragIndicatorIconTemplate. In the example we're building, let's change the icon from the default one (drag_indicator) to drag_handle.

    To do so, we can use the DragIndicatorIcon to pass a template inside of the igc-hierarchical-grid's body:

    <igc-hierarchical-grid row-draggable="true" id="grid">
    </igc-hierarchical-grid>
    
    constructor() {
        var grid = this.grid = document.getElementById('grid') as IgcHierarchicalGridComponent;
        grid.dragIndicatorIconTemplate = this.dragIndicatorIconTemplate;
    }
    
    public dragIndicatorIconTemplate = (ctx: IgcGridEmptyTemplateContext) => {
        return html`<igc-icon name="drag_handle" collection="material"></igc-icon>`;
    }
    

    Application Demo

    Row Reordering Demo

    With the help of the grid's row drag events you can create a grid that allows you to reorder rows by dragging them.

    <igc-hierarchical-grid id="hGrid" row-draggable="true" primary-key="ID">
    </igc-hierarchical-grid>
    
    constructor() {
        var hGrid = this.grihGridd = document.getElementById('hGrid') as IgcHierarchicalGridComponent;
        hGrid.addEventListener("rowDragEnd", this.webHierarchicalGridReorderRowHandler)
    }
    

    [!Note] Make sure that there is a primaryKey specified for the grid! The logic needs an unique identifier for the rows so they can be properly reordered.

    Once rowDraggable is enabled and a drop zone has been defined, you need to implement a simple handler for the drop event. When a row is dragged, check the following:

    • Is the row expanded? If so, collapse it.
    • Was the row dropped inside of the grid?
    • If so, on which other row was the dragged row dropped?
    • Once you've found the target row, swap the records' places in the data array
    • Was the row initially selected? If so, mark it as selected.

    Below, you can see this implemented:

    public webGridReorderRowHandler(args: CustomEvent<IgcRowDragEndEventArgs>): void {
        const ghostElement = args.detail.dragDirective.ghostElement;
        const dragElementPos = ghostElement.getBoundingClientRect();
        const grid = document.getElementsByTagName("igc-hierarchical-grid")[0] as any;
        const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-grid-row"));
        const currRowIndex = this.getCurrentRowIndex(rows,
        { x: dragElementPos.x, y: dragElementPos.y });
        if (currRowIndex === -1) { return; }
        // remove the row that was dragged and place it onto its new location
        grid.deleteRow(args.detail.dragData.key);
        grid.data.splice(currRowIndex, 0, args.detail.dragData.data);
    }
    public getCurrentRowIndex(rowList: any[], cursorPosition) {
        for (const row of rowList) {
            const rowRect = row.getBoundingClientRect();
            if (cursorPosition.y > rowRect.top + window.scrollY && cursorPosition.y < rowRect.bottom + window.scrollY &&
                cursorPosition.x > rowRect.left + window.scrollX && cursorPosition.x < rowRect.right + window.scrollX) {
                // return the index of the targeted row
                return parseInt(row.attributes["data-rowindex"].value);
            }
        }
        return -1;
    }
    

    With these few easy steps, you've configured a grid that allows reordering rows via drag/drop! You can see the above code in action in the following demo.

    Notice that we also have row selection enabled and we preserve the selection when dropping the dragged row.

    Limitations

    Currently, there are no known limitations for the rowDraggable.

    API References

    Additional Resources

    Our community is active and always welcoming to new ideas.