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
{{ message }}
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
for future you, use the as keyword to alias the results and avoid double data filter processing. e.g.
<tbody*ngIf="(events|filter:term) as rows"><tr*ngFor="let row of rows; let i=index"><!-- display your data here--></tr><!-- empty state i.e. when there is no data and user is searching--><ng-container*ngIf="isSearching && rows.length==0"><trclass="no-data"><tdcolspan="6" > No data matching the filter criteria</td></tr></ng-container></tbody>
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey guys,
if a result is empty, using is code
(events | filter: terms).length === 0
for exemple
Thanks a your plugin! it`s amazin :)
The text was updated successfully, but these errors were encountered: