Is there a way to prevent postbacks only on certain items?
Like have a top level button not postback but others do?
HI Daryl007,
This is not supported. What comes on the top of my head is to try to enable AutoPostBack of the explorer bar and to apply specific class to the items that you need to not do post back. After that try to do the following with jQuery:
$("div.preventClick a").click(function (event) {
event.preventDefault();
});
I hope this helps.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support