You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat($browser): Added events to provide the data after it is filtered and after it is sorted.
Added new events to the ngTableEventsChannel that fire when the ngTableDefaultGetData filters and
sorts the data. This is usefull when you want to try to export only the filtered data or when you
want to make some real time statistics over the data that is beeing filtered.
* Subscribe to receive notification whenever a `ngTableDefaultGetData` instance filters data
664
+
* Optionally supply an `eventFilter` to restrict which events that should trigger the `listener` to be called.
665
+
*
666
+
* @param listener the function that will be called when the event fires
667
+
* @param scope the angular `$scope` that will limit the lifetime of the event subscription
668
+
* @param eventFilter either the specific `IDefaultGetData` instance you want to receive events for or a predicate function that should return true to receive the event
669
+
* @return a unregistration function that when called will unregister the `listener`
* Subscribe to receive notification whenever a `ngTableDefaultGetData` instance filters data
674
+
* Optionally supply an `eventFilter` to restrict which events that should trigger the `listener` to be called.
675
+
*
676
+
* @param listener the function that will be called when the event fires
677
+
* @param eventFilter either the specific `IDefaultGetData` instance you want to receive events for or a predicate function that should return true to receive the event
678
+
* @return a unregistration function that when called will unregister the `listener`
* Subscribe to receive notification whenever a `ngTableDefaultGetData` instance orders data
683
+
* Optionally supply an `eventFilter` to restrict which events that should trigger the `listener` to be called.
684
+
*
685
+
* @param listener the function that will be called when the event fires
686
+
* @param scope the angular `$scope` that will limit the lifetime of the event subscription
687
+
* @param eventFilter either the specific `IDefaultGetData` instance you want to receive events for or a predicate function that should return true to receive the event
688
+
* @return a unregistration function that when called will unregister the `listener`
* Subscribe to receive notification whenever a `ngTableDefaultGetData` instance orders data
693
+
* Optionally supply an `eventFilter` to restrict which events that should trigger the `listener` to be called.
694
+
*
695
+
* @param listener the function that will be called when the event fires
696
+
* @param eventFilter either the specific `IDefaultGetData` instance you want to receive events for or a predicate function that should return true to receive the event
697
+
* @return a unregistration function that when called will unregister the `listener`
0 commit comments