when property resizeColumn:true, can we prevent one column to resize ?
Thanks
You can use the onColumnResize event to get the column ID and set the old width to it. Note that the block/unblockEvent(); methods are necessary to avoid the loop:
onColumnResize
block/unblockEvent();
http://webix.com/snippet/94edac7f
Many thanks.
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
You can use the
onColumnResize
event to get the column ID and set the old width to it. Note that theblock/unblockEvent();
methods are necessary to avoid the loop:http://webix.com/snippet/94edac7f
Many thanks.