Git Product home page Git Product logo

Comments (6)

scote avatar scote commented on June 18, 2024

Can you verify if that's changed the behavior when you remove the attribute [value]="case.name?

The [(ngModel)] will automatically populate the field in HTML when the variable case.name will change because you are using the two way data binding.

from ngx-materialize.

ganeshkantu avatar ganeshkantu commented on June 18, 2024

It does the same even without [value].

from ngx-materialize.

ganeshkantu avatar ganeshkantu commented on June 18, 2024

This is what the render looks like from Chrome Dev Tools. As you can see, class="active" is missing from the label.

<mz-input-container _ngcontent-c3="" _nghost-c4="">
    <div _ngcontent-c4="" class="input-field">
        <input _ngcontent-c3="" id="caseName" mz-input="" name="caseName" type="text" class="validate ng-untouched ng-pristine ng-valid" ng-reflect-id="caseName" ng-reflect-data-error="Case Name is required" ng-reflect-label="Case Name" ng-reflect-validate="true" ng-reflect-name="caseName" ng-reflect-model="357325124">
        <label for="caseName" data-error="Case Name is required">Case Name</label>
    </div>
</mz-input-container>

from ngx-materialize.

jfcere avatar jfcere commented on June 18, 2024

Hi @ganeshkantu,

Thank you for reporting the issue, we have been able to reproduce the problem. It should be investigated and fixed soon.

As a workaround, you can add *ngIf on the mz-input-container to render the input only when the value has been returned from the server.

<mz-input-container *ngIf="case.name">
   <input mz-input [label]="'Case Name'" [validate]="true" [dataError]="'Case Name is required'" name="caseName" id="caseName" type="text" [(ngModel)]="case.name">
</mz-input-container>

from ngx-materialize.

ganeshkantu avatar ganeshkantu commented on June 18, 2024

@jfcere thanks! I will the try the *ngIf workaround and report back. However, the input element needs to be present for user-input as well - so can't use the *ngIf as a solution for my implementation.

from ngx-materialize.

u2615 avatar u2615 commented on June 18, 2024

I guess also somehow related: When resetting the input value to null programmatically (ngModel or form reset), the '.active' class on the label isn't removed.

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.