Hi,
The other day I was thinking... it'd sure be nice if there were a centeral place to set the "default" skin that all RadGrids would use. Maybe there could be a "RadGridMaster" class? Then you could set the skin once, and every RadGrid instance would "inherit" from it...
Similarly, RadComboboxMaster, RadSplitterMaster, etc...
Similarly, for lots of other settings beyond skins.
--Bill
There are other things that we set on every-single-grid... For example:
myGrid.PagerStyle.PagerTextFormat = Resources.
Documents.Pages_45Items;
myGrid.PagerStyle.AlwaysVisible =
true;
myGrid.PagerStyle.HorizontalAlign =
HorizontalAlign.Right;
myGrid.PagerStyle.Mode =
GridPagerMode.NextPrevNumericAndAdvanced;
myGrid.MasterTableView.TableLayout =
GridTableLayout.Fixed;
myGrid.MasterTableView.NoMasterRecordsText = Resources.
Atlas.NoItems;
myGrid.MasterTableView.NoDetailRecordsText = Resources.
Atlas.NoItems;
myGrid.MasterTableView.SortExpressions.AllowNaturalSort =
false;
myGrid.AutoGenerateColumns =
false;
myGrid.ClientSettings.Resizing.EnableRealTimeResize =
false;
