Hi,
I want to implement GroupByExpressions in RadGridView but my requrement is
different I want Header with two GroupByExpressions .
I have used
GridGroupByExpression expression1 = new GridGroupByExpression(grdSearchResults.Columns[4]);
grdSearchResults.MasterGridViewTemplate.GroupByExpressions.Add(expression1);
GridGroupByExpression expression = new GridGroupByExpression();
expression.Expression = "TimeZone as TimeZone format \"{0}: {1}\" Group By TimeZone";
grdSearchResults.MasterGridViewTemplate.GroupByExpressions.Add(expression);
but this is giving two trees for GroupByExpression. I want single GroupByExpressions /Single Header but with two expression
Example:
Property Name:United Kingdom(TimeZone:Estern Standerd Time)
Can you please give me some suggessions please
Thanks
I want to implement GroupByExpressions in RadGridView but my requrement is
different I want Header with two GroupByExpressions .
I have used
GridGroupByExpression expression1 = new GridGroupByExpression(grdSearchResults.Columns[4]);
grdSearchResults.MasterGridViewTemplate.GroupByExpressions.Add(expression1);
GridGroupByExpression expression = new GridGroupByExpression();
expression.Expression = "TimeZone as TimeZone format \"{0}: {1}\" Group By TimeZone";
grdSearchResults.MasterGridViewTemplate.GroupByExpressions.Add(expression);
but this is giving two trees for GroupByExpression. I want single GroupByExpressions /Single Header but with two expression
Example:
Property Name:United Kingdom(TimeZone:Estern Standerd Time)
Can you please give me some suggessions please
Thanks