Wijmo UI for the Web
expand Event
wijmo.splitter.wijsplitter Namespace > options type : expand Event
Standard jQuery event object
Gets or sets the javascript function name to be called before panel1 is expanded.
Syntax
$(function () {
    // Set expand event handler function
    $(".selector").wijsplitter({
        expand : function (e) {
     
        }
    });
});
expand = function ( 
   e : jQuery.Event
) { };

Parameters

e
Standard jQuery event object
Example
Supply a callback function to handle the expand event:
$("#element").wijsplitter({ expand: function () { return false; } });
Bind to the event by type:
$("#element").bind("wijsplitterexpand", function () { return false; });
See Also

Reference

options type
wijsplitter jQuery Widget