I am using RadControls for ASP.NET AJAX v2008.1.619.20 as the only grid on a page. Can I have both fixed-width and dymanic-width columns in the same grid?
So if I resize the grid, some columns stay a fixed-width but other columns can expand/contract as necessary.
Thanks,
Randall Price
3 Answers, 1 is accepted
0
Accepted
Dimo
Telerik team
answered on 22 Oct 2008, 08:04 AM
Hi Randall,
Yes, please set
TableLayout="Fixed"
for the MasterTableView and widths to some columns, according to your prefenrece.
Kind regards,
Dimo
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
I already had TableLayout="Fixed" in my MasterTableView, but all columns had specific widths defined, thus the grid was always a constant size. So I put specific widths only on the columns I do NOT want to resize and left the columns I do want to resize with no width attribute. Doing this alone did not quite work without the Resizable="false" setting on the columns I do NOT want to resize.
Thank you both. My RadGrid is now behaving as I want.