Giter Site home page Giter Site logo

Comments (4)

jfcere avatar jfcere commented on May 21, 2024

Hi @shindekaps,

I am not really sure I understand the problem as I would need more information.

To use ngFor on options you can follow the example below ...

example.component.html

<mz-select-container>
  <select mz-select
    id="select-number"
    [label]="'Number'"
    [placeholder]="'Choose a number'"
    [(ngModel)]="optionValue">
    <option *ngFor="let option of ['one','two','three','four']" [selected]="option === optionValue">{{ option }}</option>
  </select>
</mz-select-container>

OptionValue => {{ optionValue }}

example.component.ts

public optionValue: string;

If it does not solve your issue please provide a sample of your code.

Thanks,

from ngx-materialize.

shindekaps avatar shindekaps commented on May 21, 2024

Hi,
*ngFor is working when data is hard coded. When the data is coming asynchronous then it not working. Also I got workaround when we use ngIf then it is working.
E.g.

<mz-select-container>
  <select mz-select
    id="select-number"
    [label]="'Number'"
    [placeholder]="'Choose a number'"
    [(ngModel)]="optionValue">
    <option *ngFor="let option of comapnyList" [selected]="option === optionValue">{{ option }}</option>
  </select>
</mz-select-container>

where companyList is coming from server.Above example is not working. But when we add *ngIf then it is working
E.g.

<mz-select-container *ngIf="comapnyList.length>0">
  <select mz-select
    id="select-number"
    [label]="'Number'"
    [placeholder]="'Choose a number'"
    [(ngModel)]="optionValue">
    <option *ngFor="let option of comapnyList" [selected]="option === optionValue">{{ option }}</option>
  </select>
</mz-select-container>

Thanks
Kapil Shinde

from ngx-materialize.

charpeni avatar charpeni commented on May 21, 2024

Thank you for the reporting, you're right there're bugs with async options.

We're on it.

from ngx-materialize.

charpeni avatar charpeni commented on May 21, 2024

@shindekaps it should be fixed by #91 and it will be released to npm in the next days/weeks.

If there is anything else or if the issue is not properly fixed, feel free to ping us.

from ngx-materialize.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.