I am doing this directly on the ajax demo page. so you can test it for yourself.
I used firebug console and I binded a select hander on the panelbar.
You can see when you click on a panel, it is expanded and the underlying ajax call is made
The preventDefault is not taken into account.
I had to use recursion to make work as it is supposed to
I used firebug console and I binded a select hander on the panelbar.
$("#panelbar").data('kendoPanelBar').bind('select', function (e) { e.preventDefault(); });The preventDefault is not taken into account.
I had to use recursion to make work as it is supposed to
var event= $("#panelbar").data('kendoPanelBar').bind('select', function (e) { event.preventDefault(); });