Hi, is anybody else seeing this under Visual Studio 2012 when calling the UltraGrid's DeleteSelectedRows(true)? Running 2012.1 and under VS 2010 it's ok.
Hi Ihardtke,
You may disable this prompt by hooking into the BeforeRowsDeleted event handler of the UltraGrid and access the DisplayPromptMsg property exposed from within the event arguments, you will need to set this property to false.
Example:
void ultraGrid1_BeforeRowsDeleted(object sender, BeforeRowsDeletedEventArgs e) { e.DisplayPromptMsg = false; }
If you have any further questions, please let me know.
Sincerely,Chris KDeveloper Support EngineerInfragistics, Inc.www.infragistics.com/support
The prompt is fine and I want it. The screenshot is showing that the message text and buttons are getting cut off under 2012, but not 2010. Is this an UltraWinGrid bug???