hi,
When I validate my UltraValidator I get and summary message box that i do not want only the images but I do not seem to get that disabled?Also there is and text "Validation failed with the following error(s):" how can i manipulate that text?
thanks
Please see the previous post to this thread; the UltraValidator component exposes a 'Validate' method, which is overloaded to enable you to control whether a MessageBox is displayed. If you want to prevent the MessageBox from being displayed, specify false as the value of the 'showMessageBox' parameter.
Hello, i´m testing this controls and where i find this parameter 'showMessageBox', please do you have a example.
I want do disable this message or replace this message "Validation failed with the following error(s):"
Thanks
Assuming you are triggering validation by calling the 'Validate' method programmatically, that method is overloaded so as to allow you to supress the MessageBox. The name of the parameter is 'showMessageBox'.
You can control the text that gets displayed for a programmatic validation by handling the ValidationError event and setting the ValidationErrorEventArgs.NotificationSettings.Text property.