Jan 31, 2007 #1 LouisC4 Programmer Jul 26, 2003 54 US Is there a way to resize the column width on a Gridview? Thank you Louis
Feb 1, 2007 #2 ca8msm Programmer May 9, 2002 11,327 GB Yes, if you give the GridView a CssClass you can then target any of the table elements that it renders from your CSS file e.g. Code: .myGridView td { width: 200px; } ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
Yes, if you give the GridView a CssClass you can then target any of the table elements that it renders from your CSS file e.g. Code: .myGridView td { width: 200px; } ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.