I'm trying to block the expansion of a panel bar to no avail. I've tried both of these methods on the select and expand event:
function OnSelect(e) {
e.preventDefault();
}
function OnExpand(e) {
e.preventDefault();
}
I just really need a method to block the expansion if something fails, any suggestions or alternatives would be welcome.
function OnSelect(e) {
e.preventDefault();
}
function OnExpand(e) {
e.preventDefault();
}
I just really need a method to block the expansion if something fails, any suggestions or alternatives would be welcome.