Is there a way to have the RadPanelBar do a postback using the OnItemClick event and not have the entire page flicker?
I looked at the demos and they also show this behavior. I can't seem to ajaxify just the RadPanelBar regardless of what I do.
Would manually doing the postback work using the client side click event, like this?
Thanks.
I looked at the demos and they also show this behavior. I can't seem to ajaxify just the RadPanelBar regardless of what I do.
Would manually doing the postback work using the client side click event, like this?
var
ajaxManager = $find("<%= bgAjaxManager.ClientID %>");
ajaxManager.ajaxRequestWithTarget(
'<%= radPanelBar1.UniqueID %>', '');
Thanks.