wijmo.filter.wijfilter Namespace > options type : close Event |
Javascript (Usage) | |
---|---|
$(function () { // Set close event handler function $(".selector").wijfilter({ close : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
close = function ( e : Object, args : ICloseEventArgs ) { }; |
Supply a callback function to handle the close event: $("#element").wijfilter({ close: function (e, args) { } }); Bind to the event by type: $("#element").bind("wijfilterclose", function (e, args) { });