I am setting the my UltraControlContainerEditor "derived" control for a column. When a property on my derived control is changed, I want the column to be redrawn. How can I trigger this?
Hi,
Try:
grid.Invalidate();
Thanks this works. I am guessing this would cause the complete grid to redraw. Will this be big on performance.