SMART datagrid v.1 > Classes > DataSet

Back  Forward

DataLudi.DataSet.onTagsCleared  event

It will be fired when call clearRowTags to actually remove one or more row tags. 

function onTagsCleared (ds: DataSet);
Returns
Void
Parameters
ds - DataSet.
Code -1
    ds.onTagsCleared = function (ds) {
        console.log('Data tags cleared.');
    });

    $('#clearTags').click(function () {
        ds.clearRowTags();
    });
See Also
clearRowTags
setRowTag
setRowTags
Examples
Derived Field & Row Tags