What is the correct way to reset the richSelectFilter?
dtable.getFilter(column_id).value = null
doesn’t seem to do the trick…
What is the correct way to reset the richSelectFilter?
dtable.getFilter(column_id).value = null
doesn’t seem to do the trick…
For the richSelectFilter you need to use the setValue
method:
$$("dtable").getFilter(column_id).setValue(null);