:: Forum >>

how to disable columns resize event

I would not like to change mouse cursor style and resize columns width when mouse dragging
Wednesday, November 12, 2003
To disable column resizing on all columns - add the following stylesheet rules:

<style>
.active-box-div {display: none;}
</style>

To disable resize on one column (for example the first one):

<style>
.active-column-0 .active-box-div {display: none;}
</style>

This class name is not very descriptive so I may change it to something like ".active-box-resize" in the future version.

Alex (ActiveWidgets)
Wednesday, November 12, 2003

document.styleSheets[document.styleSheets.length-1].addRule(".active-box-resize", "display: none;");

document.styleSheets[document.styleSheets.length-1].addRule(".active-column-N .active-box-resize", "display: none;");


So sweet...
Sudhaker Raj
Saturday, July 24, 2004
How would one go about this same process in version 2.0 of the grid?
Jeff
Friday, October 14, 2005
style="display:none;">
style="display:none;">
Friday, October 21, 2005
<style>
.aw-grid-separator {display: none;}
</style>
Sage(ActiveWidgets)
Friday, October 21, 2005
This seems to prevent column width re-sizing by removing the column separator in the header.

Is there a way of preventing column width re-sizing, but keeping the column separator (it looks better keeping it)?

Will
Will
Friday, October 21, 2005

This topic is archived.


Back to support forum

Forum search