Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Julian Benkov
Created on: 12 Feb 2010 02:24
Category: GridView
Type: Bug Report
0
FIX Grouping is case sensitive
The following works;
	
GridGroupByExpression groupBy = new GridGroupByExpression();
groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status DESC";
this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy);

The following doesnt work

GridGroupByExpression groupBy = new GridGroupByExpression();
groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status desc";
this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy);
0 comments