dhtmlxDataView::onAfterAdd documentation

dhtmlxDataView::onAfterAdd is not linked to the right documentation

[url]Start DHTMLX Docs

also, I attach an onAfterAdd event
I expect that the function will be called when I dhxDataView.parse for each added item -
but nothing happened.

Any advice?

	dhxDataView.attachEvent('onAfterAdd', function(obj, index){
			alert('onAfterAdd');
	});

       dhxDataView.parse(
			@Html.Raw(Json.Encode(@Model)), 
			"json");

dhtmlxDataView::onAfterAdd is not linked to the right documentation

Thank you for the information. We will necessary correct the link.

I expect that the function will be called when I dhxDataView.parse for each added item -

onAfterAdd is fired only after add() method call. parse() as well load() method calls “onXLE” event after parsing is finished.