i create some validations on some textboxs with UltraValdiator, but i want to refresh the page, how can i remove the ballontips image of error without remove validator?
I've got the same issue with UltraValidator. I completely disagree that the validator should always check the controls. My controls are databound to a BindingSource. It's a totaly valid scenario that my DataSource is empty, so the controls might have Null values in them.
Let's say I had a row in the DataSource that was invalid, so the validator showed the error icons next to the appropriate databound controls. Than the user deletes the incorrect row and there are no more rows in the DataSource. The controls get cleared of data, but the error icons remain and there is no way to clear them.
Another problem is that the Validate method validates ALL the controls even if the ValidationSettings for some controls are disabled. Validate method should take the Enabled property into account or, at least, have a parameter to do so.
The only way to clear the error condition is to change the value to something that meets the validation criteria. The control should not look like it passes validation if it doesn't.