Wijmo UI for the Web
close Event
wijmo.filter.wijfilter Namespace > options type : close Event
jQuery.Event object.
The data with this event.
The close event handler. A function called when dialog is closed.
Syntax
$(function () {
    // Set close event handler function
    $(".selector").wijfilter({
        close : function (e, args) {
     
        }
    });
});
close = function ( 
   e : Object,
   args : ICloseEventArgs
) { };

Parameters

e
jQuery.Event object.
args
The data with this event.
Example
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) { });
See Also

Reference

options type
wijfilter Method