I have a control within a RadGrid that is ajaxified using this code within the radajaxmanager.....
This will ajaxify every control within the radgrid, but I want one particular control (which is a Linkbutton) within the "radgrid_NoReferrals" to be excluded from the ajax and do a FULL postback when the linkbutton is clicked. How would I go about doing this......
<
radA:RadAjaxManager
runat
=
"server"
ID
=
"radAjax"
DefaultLoadingPanelID
=
"AjaxLoadingPanel1"
>
<
AjaxSettings
>
<
rada:AjaxSetting
AjaxControlID
=
"RadGrid_NoReferrals"
>
<
UpdatedControls
>
<
rada:AjaxUpdatedControl
ControlID
=
"RadGrid_NoReferrals"
/>
</
UpdatedControls
>
</
rada:AjaxSetting
>
</
AjaxSettings
>
</
radA:RadAjaxManager
>
This will ajaxify every control within the radgrid, but I want one particular control (which is a Linkbutton) within the "radgrid_NoReferrals" to be excluded from the ajax and do a FULL postback when the linkbutton is clicked. How would I go about doing this......