This question is locked. New answers and comments are not allowed.
Hi,
I foud that if I set all columns' width, it will not take effective when view the grid.
For example, a simple two columns binding:
Case 1: (Column Code width is OK)
columns.Bound(x => x.Code).Width(100);
columns.Bound(x => x.Name);
Case 2: (Column Name width is OK)
columns.Bound(x => x.Code);
columns.Bound(x => x.Name).Width(100);
Case 3: (Columns' width are set to equal (half of grid width), not take effective)
columns.Bound(x => x.Code).Width(100);
columns.Bound(x => x.Name).Width(100);
Note: grid width is 100% of page, page width > 1000.
Regards
Wicky
I foud that if I set all columns' width, it will not take effective when view the grid.
For example, a simple two columns binding:
Case 1: (Column Code width is OK)
columns.Bound(x => x.Code).Width(100);
columns.Bound(x => x.Name);
Case 2: (Column Name width is OK)
columns.Bound(x => x.Code);
columns.Bound(x => x.Name).Width(100);
Case 3: (Columns' width are set to equal (half of grid width), not take effective)
columns.Bound(x => x.Code).Width(100);
columns.Bound(x => x.Name).Width(100);
Note: grid width is 100% of page, page width > 1000.
Regards
Wicky
