Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
A
B
C
D
E
I
F
G
H
I would like to merge some of the columns.
Can you show me a sample code? Thank you for your help. Minkyu Lee.
Singer
Song
Michael Jackson
Billie Jean
Thriller
Stevie Wonder
Lately
Isn't She Lovely
Superstition
protected
void
RadGrid1_PreRender(
object
sender, EventArgs e)
{
for
(
int
rowIndex = RadGrid1.Items.Count - 2; rowIndex >= 0; rowIndex--)
GridDataItem row = RadGrid1.Items[rowIndex];
GridDataItem previousRow = RadGrid1.Items[rowIndex + 1];
i = 0; i < row.Cells.Count; i++)
if
(row.Cells[i].Text == previousRow.Cells[i].Text)
row.Cells[i].RowSpan = previousRow.Cells[i].RowSpan < 2 ? 2 : previousRow.Cells[i].RowSpan + 1;
previousRow.Cells[i].Visible =
false
;
}