Table columns resize cursor

Hello,

The datatable’s default cursor which is displayed when hovering over column borders or resizing the column (if resizing allowed) is “e-resize”.
I would like to change it to “col-resize”.

I managed to change it during dragging with some CSS:
.webix_resize_area.webix_dir_x, .webix_resize_handle_x, .webix_resize_origin_x, {
cursor: col-resize !important;
}

but it still does not fix the cursor when hovering over the columns border (resize zone) - it only changes after mouse click.

Thanks!

Hello,

Unfortunately, it’s not possible, as the datatable uses its own logic for the resize and cursors are defined strictly.

Hello,

Thank you for your answer.
Since resize can be done to both sides (increase or decrease column width), isn’t it more meaningful to change the default cursor to col-resize?

Same goes for resizing rows height.

Thanks

Thanks for the suggestion. In Webix 4.3 resizing cursors in datatable will be changed to col-resize and row-resize ( for column and row resizing respectfully )

Thank you!