Validation Controls inside CallBack still posting back

the call back is still made even though i have a validation control inside the call back panel and the validation criteria fails (ie validation error occurs) any work ariund available?

2 Replies

AD Administrator Syncfusion Team November 11, 2006 02:48 AM UTC

Hi Maurice,
We are looking into this issue and will get back to you as soon as possible.

Thank you,


AD Administrator Syncfusion Team November 13, 2006 07:47 PM UTC

Hi Maurice,
Validation criteria fails because Validation controls are validated only
after invoking the callback.To overcome this, Validate the page using 'Page_ClientValidate()' before calling the call back refresh event.

if(Page_ClientValidate())
{
__sfCallbackPanel1.callback();
}

Thank you,
Suresh sekaran.

Loader.
Up arrow icon