wijmo.splitter.wijsplitter Namespace > options type : expand Event |
Javascript (Usage) | |
---|---|
$(function () { // Set expand event handler function $(".selector").wijsplitter({ expand : function (e) { } }); }); |
Javascript (Specification) | |
---|---|
expand = function ( e : jQuery.Event ) { }; |
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; });