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
20
Side Scrolling in WebDataGrid
posted

Obviously this should be possible, but it's escaping me on how to accomplish it.

I have a WebDataGrid that I need to fit within a limited space.  Unfortunately the client wants to show more data in the grid than the space will allow. 

I would like the WebDataGrid to be able to side scroll left and right to show all of the data but the grid is shrinking everything down to fit to its max width.

Does anyone know how to accomplish this?

Parents
No Data
Reply
  • 2636
    Verified Answer
    posted

    Short of changing the CSS I thing the only way to do this on the WebDataGrid is to put widths on your columns...

    <ig:BoundDataField Width="100" Key="Test1" Header-Text="test1"></ig:BoundDataField>

    I prefer this to the old datagrid where I was always having to mess with percentages etc. the new WebDataGrid just renders it exactly how I like it (for me anyway).

Children
No Data