Angular 13 tutorial in Tamil

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ธ.ค. 2024

ความคิดเห็น • 20

  • @ManiKandan-nw2yr
    @ManiKandan-nw2yr ปีที่แล้ว

    Very Good Explanation....

  • @dineshdeena3281
    @dineshdeena3281 9 หลายเดือนก่อน

    very useful and thanks bro

  • @sutharshansrikumar3001
    @sutharshansrikumar3001 2 ปีที่แล้ว

    great job

  • @vikasrajaduraigopalan1868
    @vikasrajaduraigopalan1868 2 ปีที่แล้ว

    sir one input fieldmore validation eppadi apply pannanum sir

    • @NihiraTechiees
      @NihiraTechiees  2 ปีที่แล้ว +1

      use validators.compose option
      Ex: username:new FormControl('',Validators.compose([Validators.required,Validators.minLength(5)]))

  • @நிர்மல்ராஜ்-ல4ள
    @நிர்மல்ராஜ்-ல4ள ปีที่แล้ว

    💥💥💥🔥🔥

  • @thomasaugustin4495
    @thomasaugustin4495 2 ปีที่แล้ว

    input.ng-invalid{
    border-left: 8px solid red;
    }
    input.ng-untouched{
    border-left: 8px solid green;
    }
    is this correct ... i tried it worked...
    but touched is not working for both email and password .... any other option...user name its worked ... and also drop a viedo
    for confirm password as well as strict password mandatory like special char etc

  • @growmore2458
    @growmore2458 2 ปีที่แล้ว

    👏👏

  • @anandhakumar8374
    @anandhakumar8374 2 ปีที่แล้ว

    indha playlist source code link panunga bro

    • @NihiraTechiees
      @NihiraTechiees  2 ปีที่แล้ว

      github.com/nihira2020/Angular13_CURD

  • @kamalrajesh2332
    @kamalrajesh2332 2 ปีที่แล้ว

    css file?

  • @thomasaugustin4495
    @thomasaugustin4495 2 ปีที่แล้ว

    passwords : new FormControl("", [Validators.maxLength(10) ,Validators.minLength(5), Validators.required]) tried this its working thank u.....