Wijmo UI for the Web
sizing Event
wijmo.splitter.wijsplitter Namespace > options type : sizing Event
Standard jQuery event object
Gets or sets the javascript function name that would be called at the client side when a user is dragging the splitter.
Syntax
$(function () {
    // Set sizing event handler function
    $(".selector").wijsplitter({
        sizing : function (e) {
     
        }
    });
});
sizing = function ( 
   e : jQuery.Event
) { };

Parameters

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

Reference

options type
wijsplitter jQuery Widget