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).