Completed
Last Updated: 10 Oct 2014 15:08 by ADMIN
ADMIN
Nikolay
Created on: 13 Jul 2012 10:55
Category: UI Framework
Type: Bug Report
3
ADD. GridImageCellElement should be able to hide the image
GridImageCellElement should be able to hide the image that it shows. This should be possible thanks to a property that determines the visibility of the image. Probably, this property should be exposed at the base class LightVisualElement.

Resolution: 
Add new properties DrawImage and DrawBackgroundImage. You can use the following code snippet: 
void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.CellElement is GridImageCellElement)
    {
        e.CellElement.DrawImage = false;
    }
}
0 comments