Adding more and more issue. if one gets changed it changes all of them












0















I have a little problem, I repeat timepicker with *ngFor, but it's not working properly if I changed the time in one of them, it changes in all. And all have a different id. AN IDEA TO MAKE THE WORk PROPERLY?`



COMPONENT.HTML :



<div id="schedule" *ngFor="let i of Arr(num).fill(1)" 
style="display: -webkit-inline-flex">
<timepicker id="timer" class="schedulItem" style="margin-top:-28px"
[(ngModel)]="mytime" [showMeridian]="isMeridian"
[minuteStep]="mstep" (ngModelChange)="changed()">
</timepicker>
<button (click)="addSchedule()"> + </button>
</div>


COMPONENT.TS:



Arr = Array; //Array type captured in a variable
num:number = 1;
mytime: Date;

addSchedule() {
this.num = this.num + 1 ;
var length = document.querySelectorAll('.schedul').length
var time = document.getElementById("timer");
time.id += length;
}

changed(): void {
var time = this.mytime.getHours() + ":" + this.mytime.getMinutes();
console.log(time);
}









share|improve this question

























  • i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

    – john Smith
    yesterday











  • I understand but I want to be able to modify each one because I have to set several time intervals in the only day

    – Darius
    yesterday











  • an idea how can i do this?

    – Darius
    yesterday
















0















I have a little problem, I repeat timepicker with *ngFor, but it's not working properly if I changed the time in one of them, it changes in all. And all have a different id. AN IDEA TO MAKE THE WORk PROPERLY?`



COMPONENT.HTML :



<div id="schedule" *ngFor="let i of Arr(num).fill(1)" 
style="display: -webkit-inline-flex">
<timepicker id="timer" class="schedulItem" style="margin-top:-28px"
[(ngModel)]="mytime" [showMeridian]="isMeridian"
[minuteStep]="mstep" (ngModelChange)="changed()">
</timepicker>
<button (click)="addSchedule()"> + </button>
</div>


COMPONENT.TS:



Arr = Array; //Array type captured in a variable
num:number = 1;
mytime: Date;

addSchedule() {
this.num = this.num + 1 ;
var length = document.querySelectorAll('.schedul').length
var time = document.getElementById("timer");
time.id += length;
}

changed(): void {
var time = this.mytime.getHours() + ":" + this.mytime.getMinutes();
console.log(time);
}









share|improve this question

























  • i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

    – john Smith
    yesterday











  • I understand but I want to be able to modify each one because I have to set several time intervals in the only day

    – Darius
    yesterday











  • an idea how can i do this?

    – Darius
    yesterday














0












0








0








I have a little problem, I repeat timepicker with *ngFor, but it's not working properly if I changed the time in one of them, it changes in all. And all have a different id. AN IDEA TO MAKE THE WORk PROPERLY?`



COMPONENT.HTML :



<div id="schedule" *ngFor="let i of Arr(num).fill(1)" 
style="display: -webkit-inline-flex">
<timepicker id="timer" class="schedulItem" style="margin-top:-28px"
[(ngModel)]="mytime" [showMeridian]="isMeridian"
[minuteStep]="mstep" (ngModelChange)="changed()">
</timepicker>
<button (click)="addSchedule()"> + </button>
</div>


COMPONENT.TS:



Arr = Array; //Array type captured in a variable
num:number = 1;
mytime: Date;

addSchedule() {
this.num = this.num + 1 ;
var length = document.querySelectorAll('.schedul').length
var time = document.getElementById("timer");
time.id += length;
}

changed(): void {
var time = this.mytime.getHours() + ":" + this.mytime.getMinutes();
console.log(time);
}









share|improve this question
















I have a little problem, I repeat timepicker with *ngFor, but it's not working properly if I changed the time in one of them, it changes in all. And all have a different id. AN IDEA TO MAKE THE WORk PROPERLY?`



COMPONENT.HTML :



<div id="schedule" *ngFor="let i of Arr(num).fill(1)" 
style="display: -webkit-inline-flex">
<timepicker id="timer" class="schedulItem" style="margin-top:-28px"
[(ngModel)]="mytime" [showMeridian]="isMeridian"
[minuteStep]="mstep" (ngModelChange)="changed()">
</timepicker>
<button (click)="addSchedule()"> + </button>
</div>


COMPONENT.TS:



Arr = Array; //Array type captured in a variable
num:number = 1;
mytime: Date;

addSchedule() {
this.num = this.num + 1 ;
var length = document.querySelectorAll('.schedul').length
var time = document.getElementById("timer");
time.id += length;
}

changed(): void {
var time = this.mytime.getHours() + ":" + this.mytime.getMinutes();
console.log(time);
}






javascript html angular timepicker ng-bootstrap






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









piyu

172




172










asked yesterday









DariusDarius

12




12













  • i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

    – john Smith
    yesterday











  • I understand but I want to be able to modify each one because I have to set several time intervals in the only day

    – Darius
    yesterday











  • an idea how can i do this?

    – Darius
    yesterday



















  • i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

    – john Smith
    yesterday











  • I understand but I want to be able to modify each one because I have to set several time intervals in the only day

    – Darius
    yesterday











  • an idea how can i do this?

    – Darius
    yesterday

















i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

– john Smith
yesterday





i dont see why they would have a different id each, they should all have the same id id="timer" which will lead to the behaviour you describe

– john Smith
yesterday













I understand but I want to be able to modify each one because I have to set several time intervals in the only day

– Darius
yesterday





I understand but I want to be able to modify each one because I have to set several time intervals in the only day

– Darius
yesterday













an idea how can i do this?

– Darius
yesterday





an idea how can i do this?

– Darius
yesterday












1 Answer
1






active

oldest

votes


















0














I found the problem! the model was the problem [(ngModel)]="mytime". All time pickers to the same model and one gets changed it changes all of them.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54251217%2fadding-more-and-more-timepicker-issue-if-one-gets-changed-it-changes-all-of-t%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I found the problem! the model was the problem [(ngModel)]="mytime". All time pickers to the same model and one gets changed it changes all of them.






    share|improve this answer




























      0














      I found the problem! the model was the problem [(ngModel)]="mytime". All time pickers to the same model and one gets changed it changes all of them.






      share|improve this answer


























        0












        0








        0







        I found the problem! the model was the problem [(ngModel)]="mytime". All time pickers to the same model and one gets changed it changes all of them.






        share|improve this answer













        I found the problem! the model was the problem [(ngModel)]="mytime". All time pickers to the same model and one gets changed it changes all of them.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered yesterday









        DariusDarius

        12




        12






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54251217%2fadding-more-and-more-timepicker-issue-if-one-gets-changed-it-changes-all-of-t%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Liquibase includeAll doesn't find base path

            How to use setInterval in EJS file?

            Petrus Granier-Deferre