Hi,
{
UltraGridColumn col = new UltraGridColumn("icon", null, ColumnType.Button, null);
col.CellStyle.BackColor = col.CellStyle.ForeColor = System.Drawing.Color.Transparent;
col.CellButtonStyle.BorderStyle = BorderStyle.None;
col.CellButtonStyle.BorderWidth = Unit.Pixel(0);
col.CellStyle.TextOverflow = TextOverflow.Ellipsis;
UltraWebGrid1.Columns.Add(col);
}
Thanks, Christian
m also facing same problem, if u hv ny solution than plz help
thanks
manish
Did you check whether the EnableViewState for the UltraWebGrid is true ?
It should be set to true for having the image available all the time through different page requests(I mean postbacks).
I have the same issue with setting the .Style.BackColor. I am using version 7.3.20073.38 and the .EnableViewState is set to True. I would love to find a solution as I have been hunting for one for over a week now.