Wijmo UI for the Web
hiding Event
wijmo.popup.wijpopup Namespace > options type : hiding Event
Standard jQuery event object
Information about an event
The hiding event handler. A function called before the element is hidden. Cancellable.
Syntax
$(function () {
    // Set hiding event handler function
    $(".selector").wijpopup({
        hiding : function (e, data) {
     
        }
    });
});
hiding = function ( 
   e : jQuery.Event,
   data : IHidingEventArgs
) { };

Parameters

e
Standard jQuery event object
data
Information about an event
Remarks
This is a cancelable event. You can set data.cancel = true to cancel the element to be hidden.
See Also

Reference

options type
wijpopup jQuery Widget