This question is locked. New answers and comments are not allowed.
Using a Bound column in a grid that uses Ajax data binding, I get several errors like this:
Server Error in '/' Application.
The column in question is defined as:
columns.Bound(pgm => pgm.BusinessUnit.Column.Value).Title("Business Unit");
To get around this problem, I tried using a Template column, but it appears that Template columns aren't supported in grids that use Ajax data binding? Is there a way to make this work?
Server Error in '/' Application.
The property IBusinessUnit.Value could not be found.
Exception Details: System.ArgumentException: The property IBusinessUnit.Value could not be found.The column in question is defined as:
columns.Bound(pgm => pgm.BusinessUnit.Column.Value).Title("Business Unit");
To get around this problem, I tried using a Template column, but it appears that Template columns aren't supported in grids that use Ajax data binding? Is there a way to make this work?