AD
Administrator
Syncfusion Team
April 24, 2006 09:03 AM UTC
Hi Fady,
By default, DataBoundGrid doesn''''t store any style info properties.You can not set any cell or row specific properties for the DataBoundGrid.You need to provide them on demand in the Model.QueryCellInfo as shown in this KB:
http://www.syncfusion.com/Support/article.aspx?id=10351
If you are planning to set any visual style info properties, you need to use the PrepareViewStyleinfo,
http://www.syncfusion.com/Support/article.aspx?id=560
Could you try this code in PrepareViewStyle Info Event to set the texe Alignment of the Column header.Here is a code snippet
//For ColumnHeader cell(0,,1)
if(e.RowIndex == 0 && e.ColIndex ==1)
{
e.Style.HorizontalAlignment = GridHorizontalAlignment.Left;
}
Please let me know if you need any further assistance.
Thanks for choosing Syncfusion Products.
Regards,
Haneef
FS
Fady Sayegh
April 24, 2006 09:14 AM UTC
Hi Haneef,
thanks to your reply, it works
fady