hi All,
I have dynamically set column type as Button. I set background image of button in InitializeRow event
as :
e.Row.Cells.FromKey("ReportCount").Style.BackgroundImage = "../../Images/Report1.ico";
this displays iamge but with text of cell value also, how should I dispaly only iamge without cell value.
thanks
Shital
Hello,
You can try something along the lines of
e.Row.Cells.FromKey("ReportCount").Value = String.Empty
and see if it works for you.
No, I don't to loose actual value of cell, want to just hide the cell value and display cell image
Thanks for replay