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
334
Change confirmation message text when delete a row in wingrid
posted

Hi, i am trying to change text on confirmation message box when i try to delete a row in the wingrid, i couldn't found anything for now, any ideas to do that?

Thanks

Parents
No Data
Reply
  • 69832
    Suggested Answer
    Offline posted

    this.ultraGrid.BeforeRowsDeleted += new BeforeRowsDeletedEventHandler(ultraGrid_BeforeRowsDeleted);

    void ultraGrid_BeforeRowsDeleted(object sender, BeforeRowsDeletedEventArgs e)
    {
        e.DisplayPromptMsg = false;
        MessageBox.Show( "Anything you want to say" );
    }

Children
No Data