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
1330
Invalid Data
posted

Is there a way to change or stop the message appearing when invalid data is entered into a cell on a Win

 Grid?

Parents
  • 69832
    Verified Answer
    Offline posted

    Handle the control's 'Error' event, and set the Cancel property of the event arguments to true:

    this.ultraGrid.Error += new Infragistics.Win.UltraWinGrid.ErrorEventHandler(ultraGrid_Error);

    void ultraGrid_Error(object sender, Infragistics.Win.UltraWinGrid.ErrorEventArgs e)
    {
        e.Cancel = true;
    }

Reply Children