Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
Column Resizing problem
posted

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

Parents
No Data
Reply
  • 14049
    Suggested Answer
    Offline posted

    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.

Children
No Data