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

Parameters

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

Reference

options type
wijsplitter jQuery Widget