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

Radautocomplete menu pops open when navigating. #1364

Closed rnmhdn closed 4 years ago

rnmhdn commented 4 years ago

Tell us about the problem

Radautocomplete menu pops open when navigating with bottom navigation.

Which platform(s) does your issue occur on?

Android

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

$ tns info ✔ Getting NativeScript components versions information... ✔ Component nativescript has 6.4.1 version and is up to date. ✔ Component tns-core-modules has 6.4.2 version and is up to date. ✔ Component tns-android has 6.4.1 version and is up to date.

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

See the playground in this stackoverflow question

rnmhdn commented 4 years ago

Seems like feedback goes one way around here :-"

rnmhdn commented 4 years ago

I solved it with this:

    radTextChanged(args) {
      this.cloned_profile.region = args.text;
      args.object.android?.setSuggestionViewHeight(600);
    },
    radLoaded(args) {
      args.object.android?.setSuggestionViewHeight(0);
    },