I have a navigation repeater that emits a series of link buttons, each of which calls a client-side function and passes an ID that I want to use to bind a second (detail) repeater on the page. I then call the RadAjaxManager's AjaxRequest() method to perform the binding of the detail repeater. When I click any of the rendered link buttons the detail repeater is not being bound.
I've created RadAjaxManager settings as follows...
Is it sufficient to cover the entire navigation repeater with a single Ajax setting in the Ajax Manager as above, or should I be programmatically adding each Link Button to the Ajax Manager's settings at runtime?
Rob
I've created RadAjaxManager settings as follows...
<
ajaxsettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"rptNav"
>
<
updatedcontrols
>
<
telerik:AjaxUpdatedControl
ControlID
=
"rptDetail"
/>
</
updatedcontrols
>
</
telerik:AjaxSetting
>
</
ajaxsettings
>
Is it sufficient to cover the entire navigation repeater with a single Ajax setting in the Ajax Manager as above, or should I be programmatically adding each Link Button to the Ajax Manager's settings at runtime?
Rob