row template

hi

in this attechment calculater template in one column. i want to this template in seperate row for that what i need to do?



temp.zip

1 Reply

AD Administrator Syncfusion Team May 14, 2008 11:19 AM UTC

Hi Sanjay,

Thanks for the interest in Syncfusion Grid.

I am not sure " this template in seperate row " you have mentioned here. If your intention is to show this calculator control in a row, you can handle PrepareViewStyleInfo event and display this in a row. Please refer the following code snippet for more detail.



private void gridControl1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
if(e.RowIndex==2 && e.ColIndex >0)
e.Style.CellType = "DataEntry";
}


If I have misunderstood your requirement, could you please explain me in detail, so that I can work in depth and try to send a better solution?

Regards,
Asem.



Loader.
Up arrow icon