Wijmo UI for the Web
detailCreating Event
wijmo.grid.wijgrid Namespace > options type : detailCreating Event
The jQuery.Event object.
The data with this event.
The detailCreating event handler is called when wijgrid requires to create a new detail wijgrid.
Syntax
$(function () {
    // Set detailCreating event handler function
    $(".selector").wijgrid({
        detailCreating : function (e, args) {
     
        }
    });
});
detailCreating = function ( 
   e : Object,
   args : IDetailCreatingEventArgs
) { };

Parameters

e
The jQuery.Event object.
args
The data with this event.
Remarks
Event receives options of a detail grid to create, which were obtained by cloning the detail option of the master grid. User can alter the detail grid options here and provide a specific datasource within the args.options.data option to implement run-time hierarachy.
See Also

Reference

options type
wijgrid jQuery Widget