A DevExpress ASPxGridView column may be grabbed ahold of not only by position like any other item in a list in C# but also by FieldName and Caption!
These are legit:
- var foo = myGrid.Columns[13];
- var foo = myGrid.Columns["NumberOfCats"];
- var foo = myGrid.Columns["Kitty Count"];
No comments:
Post a Comment