How can I get several GridViews on a single page to share the same Column widths?
I have four GridViews with (essentially) the same columns in each. They have unique headers and represent data from different queries. I want to maximize readability by allowing the columns to be dynamically sized based on the data but I don't want each GridView to do it independently. Having same-named columns one above the other with different widths looks very sloppy. Instead want all four GridViews to choose the same size for column 1, the same size for column 2, etc.
In windows apps I believe there is a property for this called SharedSizeGroup which allows you to set columns from different controls to collaborate when deciding on the optimum size.
Can this be achieved at all in ASP.NET? Is it just too much to ask because the dynamic column widths are up to the browser?
Thanks