Hi,
I have a grid and its by default grouped through the datasource like below:
I would like to be able click the ProjectName which will then the project record in a popup.
How can I add a click event to the group header?
Thanks.
I have a grid and its by default grouped through the datasource like below:
.DataSource(dataSource => dataSource .Ajax().Group(g => g.Add(c => c.ProjectName)) .Read(read => read.Action("GetProjectItems", "Project")))How can I add a click event to the group header?
Thanks.