BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
GridB[0,1].Text="Header1"; // Set the Header text for First header cell
GridB[0,2].Text="Header2";
Code Snippet[c#]:
void GridQueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
//Correct usage. Cell values should be accessed only in events for virtual grid.
if (e.RowIndex == 0 && e.ColIndex == 11)
{
var test3 = "Sep";
var bla3 = e.Style;
bla3.Text = test3;
e.Style.Text = bla3.Text;
}
}
KB:
https://www.syncfusion.com/kb/427/what-is-a-virtual-grid
Sample :
http://www.syncfusion.com/downloads/support/forum/119722/ze/CS-685379556
Please let us know if you have any other concerns.
Thanks & Regards,
AL.Solai.