Prevent panel from opening?
I'm looking to try and have some logic built into one of my panels and am having trouble preventing it from opening.
I have the following code but it will not prevent the panel from opening.
- $(document).on('panelbeforeopen', '#right_panel', function(event){
- event.preventDefault();
- alert('test');
- event.stopImmediatePropagation();
- return false;
- });