Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
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
;
}