I have a WebDataGrid and I set AutoGenrateColumns="true", Height and Width are specified as well. The DataSet is bind dinamically based on user selection. I also set a minWidth in the page as follows:
<style type="text/css">td {min-width:50px}</style>
When I try to change column width, mouse icon changes and drag and drop in the desired size, but it automatically set width back.
Is there anything I'm missing to set up? I took a look your sample page and it seems to works fine.
I'm using
Version=9.2.20092.1003
Thanks
OscarG
This setting forces all of the TD elements on the page to be at least 50px:
td {min-width:50px}
I would not recommend forcing it for the whole page.