It would be nice, if default Reset button is there on Data grid2 widget, right now search operation is happening as auto.
Please also add Reset filters on Gallery.
Hey Rick, you can assign the search type for yourself via these steps below;
end result:
wrap your datagrid2 with the accessibility helper and target all your filter inputs :
additional you need some extra CSS in your project and you are done:
input[type="search"] {
-webkit-appearance: searchfield;
}
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: searchfield-cancel-button;
}
also assign the input type: search instead of text
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search
then the browser should automatically add a reset button to the input, for quick line resets. it’s just a simple html5 property
Agree w/ Casper. Seems small, but our customers are used to/will expect it.
Seems very small, but is very much needed.
We need this.
Please, implement this.