views:

18

answers:

1

I have implemented column resizing with YUIs DataTable as demonstrated in this example:

http://developer.yahoo.com/yui/examples/datatable/dt_complex_clean.html

Is there anyway to enable column resizing without column moving?

+1  A: 

Yes. Set "resizable" to true in your column definitions (it defaults to false). Your link has an example of this on line #79.

Don't set draggableColumns in the datatable configuration (it defaults to false). This is done in the example on line #99.

Tivac