I know I can do this via the built in grouping feature but that is not customizable using ajax binding
Is there any other way you can do it ?
Thanks,
Narendra
3 Answers, 1 is accepted
0
Accepted
Atanas Korchev
Telerik team
answered on 28 Jun 2011, 07:04 AM
Hello Narendra,
You can set the rowSpan property by handling the OnRowDataBound event.
function onRowDataBound(e) {
e.row.cells[0].rowSpan = 3;
}
Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
This works, although as soon as I go row.cells[0] .rowspan = 2 the whole formatting shifts to the left
Do you know why this might be happening ?
0
Atanas Korchev
Telerik team
answered on 29 Jun 2011, 07:26 AM
Hi Narendra,
This is how the rowspan attribute works. The cell occupies more than one row.
Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items