Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1090
DeleteSelectedRows prompt under 2012
posted

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.

Parents
No Data
Reply
  • 4618
    Suggested Answer
    posted

    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 K
    Developer Support Engineer
    Infragistics, Inc.
    www.infragistics.com/support

Children