UI-GRID Single Input Filtering -
whats best way handle grid filtering 1 input. there simpler way dealing way: http://ui-grid.info/docs/#/tutorial/321_singlefilter
i want filter every keystroke, not click button.
thanks
if looking @ filtering on multiple columns, thats best way. make filter on every key stroke, can add "ng-change" text input , call filter function in example.
<input ng-model='filtervalue' ng-change='filter()'/>
if have large dataset , filter on every key stroke, there performance lag unless handle inside filter function.
Comments
Post a Comment