onAfterAdd

срабатывает после добавления комментария

void onAfterAdd(number id,number index);
idnumberID комментария
indexnumberномер комментария в истории комментариев

Example

$$("comments").attachEvent("onAfterAdd",function(id,index){
    webix.message("New comment is added at " + index + " position");
});

See also
Наверх