Tuesday, September 22, 2015

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:

  1. var foo = myGrid.Columns[13];
  2. var foo = myGrid.Columns["NumberOfCats"];
  3. var foo = myGrid.Columns["Kitty Count"];

No comments:

Post a Comment