Hello!
I have a user control that searches recursively for an radajaxmanger in its page hierarchy. Then the control adds its components that should be ajaxified like that:
ajaxManager.AjaxSettings.AddAjaxSetting(btnEditValues, gridPanel, radLoadingPanel);
the page hierarchy looks like that
Page (with the Ajax Manager)
-Control
--gridPanel
---btnEditValues
Now every control in the gridPanel makes an ajaxpostback as well.
When I try to exclude the control from the AjaxRequest with a javascript (OnRequestStart for example) the Clientside event "OnRequestStart" is not even called. But still an ajax postback is made.
I successfully excluded other controls from the postback, like "btnEditValues".
Is it possible that control that are the updated ones a somehow implicitly the updating ones as well ??
I'm really stuck here...
thx in advance for your help,
kind regards,
M
I have a user control that searches recursively for an radajaxmanger in its page hierarchy. Then the control adds its components that should be ajaxified like that:
ajaxManager.AjaxSettings.AddAjaxSetting(btnEditValues, gridPanel, radLoadingPanel);
the page hierarchy looks like that
Page (with the Ajax Manager)
-Control
--gridPanel
---btnEditValues
Now every control in the gridPanel makes an ajaxpostback as well.
When I try to exclude the control from the AjaxRequest with a javascript (OnRequestStart for example) the Clientside event "OnRequestStart" is not even called. But still an ajax postback is made.
I successfully excluded other controls from the postback, like "btnEditValues".
Is it possible that control that are the updated ones a somehow implicitly the updating ones as well ??
I'm really stuck here...
thx in advance for your help,
kind regards,
M