Skip to content

onSubViewCreate

fires after a subview was created

function onSubViewCreate(
// the created subview
view: object,
// the item that a subgrid is created for
item: object
): void
datagrid1.attachEvent("onSubViewCreate",function(view, item){
console.log("A subview is created");
});

also check the next samples:

Articles