We have a server control that inherit from CompositeControl and implements IPostBackDataHandler, ICallbackEventHandler.
When we fire the CallBackEvent for the control (using Page.ClientScript.GetCallbackEventReference(this, "args", "callBack", "context",true)), in an async mode, it executes the validators of the page that doesn't have a ValidationGroup defined.
I need to avoid this behavior without having to set a ValidationGroup to every validator in the page, and i'm tring to not do it with the javascript (i know i could disabled the validators previous the callbackevent, but i'm tring not to get there).
I've also tried to implement IButtonControl so i can have a CausesValidation property and set it to false, but it didn't work.
Does any one have an idea about this issue?
Thank you in advance!!
Sebastián.