Base solution for your next web application

Activities of "jbalda"

Answer

Thanks a lot!

thanks!

Hi,

I have been able to resolve eliminating the dependency to "OwlCarousel ^ 1.3.2" that gave me problems, and installing the Bower libraries from the console

I should upgrade dependency to owl carousel 2?

Thanks

Could it be a problem with Bower? I tried to restore packages in the context menu on bower.json but nothing happened.

Yes, from that place

Clarifying:

  • My code with ngx-bottstrap datepicker is: <div class="form-group form-md-line-input form-md-floating-label no-hint"> <datepicker class="" type="date" name="dateBirth" [(ngModel)]="professional.dateBirth" required></datepicker> <label>{{l("DateBirth")}}</label> </div>
  • My project is using Angular 2

Hi,

I have the same problem. I've implemented with pipes:

<input type="date" #dateBirthInput class="form-control" name="datBirth" [ngModel]="professional.dateBirth | date:'yyyy-MM-dd'" (ngModelChange)="professional.dateBirth = $event" >

and I've implemented with datetimepicker() with your solution from here: #2984.

The error is the same: "ERROR TypeError: this.dateBirth.toISOString is not a function".

But if I use ngx-bootstrap [http://valor-software.com/ngx-bootstrap/#/datepicker]) it's OK (<ins>but I don't want to use that because i need calendar popup</ins>).

<div class="form-group form-md-line-input form-md-floating-label no-hint"> <datepicker class="" type="date" name="dateBirth" [ngModel]="professional.dateBirth | date:'yyyy-MM-dd'" (ngModelChange)="professional.dateBirth = $event" required></datepicker> <label>{{l("DateBirth")}}</label> </div> Could you helpme, thks!

Showing 1 to 7 of 7 entries