Hi,
I'm working on an application where I copy data from excel into an ultragrid.
When I paste wrong data (for example I paste a string into a column that expects an integer) I get a popup from the ultragrid displaying the paste error.
I want to make my own validation without popups.
Is there a way to turn these popups off?
greetings
Gert
Found a solution.
This is what solved it:
private void ugData_Error(object sender, Infragistics.Win.UltraWinGrid.ErrorEventArgs e) { e.Cancel = true; }
Hello ,
I am glade to here that you were able to find a solution for your issue. On the following link you could find more information about Error event:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v11.1~Infragistics.Win.UltraWinGrid.UltraGrid~Error_EV.html
Thank you for using Infragistics Components.