I am using a boolean field to add a grouping to a grid. The field has been given the following model attributes
If I INCLUDE the field property as a bound field, the grid is correctly displaying the group by text as "COMMON TASK". But displaying the field BOTH as a group by and a bound field is doubling up. So I only want to display the value as a group by.
So when i remove the bound column, the group by text reverts back to "CommonTask", which is the property name and discards the display name attribute.
Is there a way if explicitly setting the group by text or is this a bug with Kendo.
The fist image shows the correctly formatted group by text, BUT the field is included as a bound field and a group by field.
The second image shows the field only used as a group by within the datasource and the display attribute being ignored.
[Display(Name = "COMMON TASK")]
public bool CommonTask { get; set; }
If I INCLUDE the field property as a bound field, the grid is correctly displaying the group by text as "COMMON TASK". But displaying the field BOTH as a group by and a bound field is doubling up. So I only want to display the value as a group by.
So when i remove the bound column, the group by text reverts back to "CommonTask", which is the property name and discards the display name attribute.
Is there a way if explicitly setting the group by text or is this a bug with Kendo.
The fist image shows the correctly formatted group by text, BUT the field is included as a bound field and a group by field.
The second image shows the field only used as a group by within the datasource and the display attribute being ignored.