Angular 10 Tutorial #55 - Angular Template Driven Forms Tutorial | Angular 10 Tutorial For Beginners

Поделиться
HTML-код
  • Опубликовано: 3 дек 2024

Комментарии • 38

  • @kishorekumars4664
    @kishorekumars4664 3 года назад +5

    Excellent teaching style Sridhar...This is why we watch it immediately whenever we get notified about your update!! Keep rocking!

    • @ARCTutorials
      @ARCTutorials  3 года назад

      Thanks so much Kishore for your kind words

  • @technova3629
    @technova3629 2 года назад +2

    Hii Sir,
    I am your student...I have been watching your Angular 10 series on RUclips...and l am loving it...
    You have covered all basic to advanced concepts on angular.... Thanks for that....
    I want to develope a simple project in which user can upload file and can be able to do some basic curd operation on it...
    Thank you in advance....😊

    • @ARCTutorials
      @ARCTutorials  2 года назад +1

      Sure Buddy. I will start Angular 13 series on CRUD very soon.

  • @aishwarya2205
    @aishwarya2205 3 года назад +1

    Great explanations...Angular made easy...thank you for sharing ur knowledge

  • @salometchintcharauli4506
    @salometchintcharauli4506 3 года назад +1

    Thank you so much for this tutorial course. The way you describe things makes me see the whole picture and the understanding of details.

  • @SanthoshKumar-gc4lo
    @SanthoshKumar-gc4lo 3 года назад +1

    In customer component when we create it the module and routing module file is not created ! what to do with

  • @amanuellebassi7294
    @amanuellebassi7294 3 года назад

    You are awesome as usual. Great Lectures!!!!

  • @ashwini6804
    @ashwini6804 Год назад

    hi sir,
    when you will start react ?
    i am waiting for that
    i love your videos thank you

  • @williamt.roberts4771
    @williamt.roberts4771 2 года назад

    I do have a question. Do you also have React videos?

  • @bhagwanpatil8812
    @bhagwanpatil8812 3 года назад

    what is the data type for Radio button?

  • @royalblue4064
    @royalblue4064 2 года назад +1

    May someone explain to me how did l introduce an infinite loop after adding a component and trying to display the input as l followed this tutorial here.

    • @ARCTutorials
      @ARCTutorials  2 года назад

      Send me code snippet at soorya.aaradhya@ gmail.com

  • @vijaykumar-nn2ln
    @vijaykumar-nn2ln Год назад

    Hi Sir . My name is Vijay Kumar . Can u do the videos regarding Url' s and how we fetch the data through url with the help of httpMethods. In the real time environment also we use Url's to interact with data base. If it is possible to u I'm very happy for that. Thank you....!

  • @dineshguptha8225
    @dineshguptha8225 3 года назад +1

    I have a question ..sir...In the real-time angular projects mostly used forms based or any other based

    • @ARCTutorials
      @ARCTutorials  3 года назад +1

      Hi Dinesh. In most enterprise apps i have worked - mostly reactive forms are used. I will cover it in next few episodes

    • @dineshguptha8225
      @dineshguptha8225 3 года назад

      @@ARCTutorials thank you sir

  • @AngularReactNodeJSJavascript
    @AngularReactNodeJSJavascript 3 года назад +1

    How To insert Radio button in form sir ?

    • @niharikagurnani
      @niharikagurnani 3 года назад

      Yeah, not able to see the values from radio button on the console.

    • @niharikagurnani
      @niharikagurnani 3 года назад

      Fixed it, I hadn't added ngModel in the radio buttons. Make sure you've not done the same mistake.
      Male

      Female

  • @vivekmishra9674
    @vivekmishra9674 3 года назад +1

    From where customers component came ? Please don't assume things and also copy pasting destroy all interest.

  • @umanaiknur7457
    @umanaiknur7457 2 года назад

    Why template driven forms are asynchronous ?

  • @ambiank4980
    @ambiank4980 3 года назад

    My module isn't loading when I add the firstName property in the component class. When I enter the URL path it just goes back to the 4200 with no errors. It's just not loading. What should I do?
    Edit - I'm still stuck here. So, any help is appreciated.

    • @faixan13
      @faixan13 3 года назад

      may be you have applied some route guard to your component class like canActivate or other

    • @amarnath602
      @amarnath602 3 года назад

      @Abhishek Panchal,
      From the question I have understood that you have created the lazy module but forget to update those paths in your routing module, Because of which it keep redirecting to the base path always
      Or if you see any error logs in your console, please share the details
      or share your code in stackblitz to identify what's causing the issue.
      Thanks

    • @sairajoseph7595
      @sairajoseph7595 3 года назад

      I had the same problem. Then as suggested by amar nath, i updated the app-routing module with path:customers/add and component:AddCustomerComponent. Now it's working. Hope it works for you too

    • @amarnath602
      @amarnath602 3 года назад

      @@sairajoseph7595 Glad it resolved you're issue 😊

  • @sureshatla9735
    @sureshatla9735 3 года назад

    Sir I have followed the Angular 10 video also. I got error error TS2322: Type 'Event' is not assignable to type 'string'. Could please help me to fix this error

    • @sureshatla9735
      @sureshatla9735 3 года назад +1

      It got resolved. I made typo error

    • @ARCTutorials
      @ARCTutorials  3 года назад +1

      Typos are the most common mistake in Angular

  • @tangaveluvinod6525
    @tangaveluvinod6525 3 года назад

    error TS2322: Type 'Event' is not assignable to type 'string'.

    • @tangaveluvinod6525
      @tangaveluvinod6525 3 года назад

      Hi sir, i have added the FormsModule in customer.module.ts and app.module.ts but still getting this error

    • @tangaveluvinod6525
      @tangaveluvinod6525 3 года назад +1

      Its working in the components under app.module.ts, its not working in the components under customer.module.ts can you tell me why?

    • @ARCTutorials
      @ARCTutorials  3 года назад

      Hi Vinod. Its because you might have not exported it. Can you pls check if the component is exported?

    • @amarnath602
      @amarnath602 3 года назад

      ​@@tangaveluvinod6525 I also got this issue, Possibly check 2 points,
      1. You might not added the lazy loaded module in the app-routing module
      2. Possibly the variable not declared in the component file
      If possible, you can share your code in stackblitz
      Thanks

  • @anasuyars6174
    @anasuyars6174 2 года назад

    hello Sir, I am very thankful its really helping , learn in easy manner . a small request from my end could you please post video on custom Directive @HostBinding & @HostListener