0

I am using radajaxmanager for getting ajax mode.

But many times I prefer to remove a control such as a link button inside a repeater from ajax mode (means repeater has been added to radajaxmanager).

How can I do this job with radajaxmanager?

That control goes in the right way and it is not appeared in the radajaxmanager configuration, and we only have repeater there.

BenMorel
  • 34,448
  • 50
  • 182
  • 322
SilverLight
  • 19,668
  • 65
  • 192
  • 300

2 Answers2

1

we should use OnRequestStart event (client-side) of RadAjaxManager like below :

function OnRequestStart(s, e) {
    if (e.get_eventTarget() == 'bla') {
        e.set_enableAjax(false);
    }
}
SilverLight
  • 19,668
  • 65
  • 192
  • 300
1

A more comprehensive set of examples on how to specifically exclude a control can be found in the Telerik documentation here:

http://www.telerik.com/help/aspnet-ajax/ajax-exclude.html

bigtv
  • 2,611
  • 5
  • 29
  • 42