ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

RadListView doesn't work in WrapLayout, StackLayout, AbsoluteLayout, FlexboxLayout #555

Open zbranzov opened 6 years ago

zbranzov commented 6 years ago

Tell us about the problem

If you wrap RadListView inside any of the layouts except Grid and Dock it won't work.

Which platform(s) does your issue occur on?

iOS

Please provide the following version numbers that your issue occurs with:

Please tell us how to recreate the issue in as much detail as possible.

  1. Wrap RadListView in WrapLayout, StackLayout, AbsoluteLayout, FlexboxLayout.
  2. It won't show the items provided.

Is there code involved? If so, please share the minimal amount of code needed to recreate the problem.

<WrapLayout class="page">
    <RadListView [items]="items$" class="list-group" [itemTemplateSelector]="templateSelector">
        <ng-template let-item="item">
            <Label [nsRouterLink]="['/item', item.id]" [text]="item.name" class="list-group-item"></Label>
        </ng-template>

        <ng-template tkListViewHeader>
            <StackLayout>
                <Label text="I'm a footer."></Label>
            </StackLayout>
        </ng-template>
    </RadListView>
</WrapLayout>

rad-list-view.zip

HunterJS-bit commented 6 years ago

Im having same issue, not showing on IOS 11 , Iphone 8 simulator :(

plackowski commented 4 years ago

Any news? I can't use RadListView inside AbsoluteLayout because of problems with scrolling the list of items in RadListView. Is there any work around? (Yes, I need AbsoluteLayout because I need animate filtering related to my RadListView)