I want to create a column with PushButtons and Image drawn ON TOP of a themed push button.
In OnQueryCellStyleInfo I have:
e.Style.CellType = "PushButton";
e.Style.Themed = true;
e.Style.ImageList = imageList;
e.Style.ImageIndex = 0;
e.Style.ImageSizeMode = GridImageSizeMode.CenterImage;
This gives me push button but without the image (I have image list set up).
If I use e.Style.CellType = "Image" I get an image from image list drawn and centered, but I want to have pushbutton style theme around it.
Is there a way to do this?
I found similar posts here but they were not very helpful:
https://www.syncfusion.com/forums/16806/use-button-image-in-gridgroupingcontrol
https://www.syncfusion.com/forums/77780/how-to-add-an-image-on-an-pushbutton-in-a-gridgrouping-control