Open
Description
Tell us about the problem
Angular provides basic informations in *ngFor that are missing in RadListView :
let-first="first"
to know if item is the first of the currently visible items (not first of the input array, but first of filtered, sorted, etc items)let-last="last"
: same but for last visible item- and the usefull :
let-i="index"
seems to be working but is nowhere to be found in the documentation - I would add
let-count="count"
as there is no way to know how many items are actually visible (after filtering)
Which platform(s) does your issue occur on?
Both
Code :
<lv:RadListView [items]="items">
<ng-template tkListItemTemplate let-item="item" let-index="index">
<!-- template content -->
</ng-template>
</lv:RadListView>