Hello,
i wnat to change the backcolor of the specific column at run time.
i am using
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Protected Sub grdMergeAccount_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.WebUI.UltraWebGrid.LayoutEventArgs) Handles grdMergeAccount.InitializeLayout
grdMergeAccount.Columns(0).DataType = "String" e.Layout.Bands(0).Columns(0).Header.Style.CssClass = "redCol" e.Layout.Bands(0).Columns(0).Header.Style.BackColor = Drawing.Color.Red End Sub
but it does not changes any way.
Waiting for reply,
Thanks,
I've done it this way...
grdMergeAccount.Columns(0).Header.Style.BackColor = Drawing.Color.Red
Seems to work ok.
Good luck!