SMART datagrid v.1 > Classes > DataSet
It will be fired when call clearRowTags to actually remove one or more row tags.
ds.onTagsCleared = function (ds) {
console.log('Data tags cleared.');
});
$('#clearTags').click(function () {
ds.clearRowTags();
});