Awesome explanation easy way to understand thanks so much for such wonderful videos
@lipunpatel59374 жыл бұрын
Very informative... keep it up sir..
@ARCTutorials4 жыл бұрын
So nice of you. Thanks for your kind words
@karthickvickram81092 жыл бұрын
Good Learning
@user-glory-of-ukraine3 жыл бұрын
great tutorials sir!!! thank you very much
@ARCTutorials3 жыл бұрын
Glad you like them!
@kallipalliashokkumar81142 жыл бұрын
Thank you so much bro for this tutorial
@ARCTutorials2 жыл бұрын
Thank you for your kind words 🙏
@tirtheshpawar96143 жыл бұрын
Great Stuff Man! I hope you reach more and more people. Binge watching this playlist from the start for a long time now! clearing concepts! P.S. This man solves your doubts in comment section too!!
@ARCTutorials3 жыл бұрын
Much appreciated! Thanks for your kind words and support
@dineshguptha82254 жыл бұрын
Yes bro waiting for live project eagarly
@ARCTutorials4 жыл бұрын
Yes dinesh. Starting after data-binding tutorial
@sureshmolabanti42683 жыл бұрын
Hello Sridhar, Simply i just loved your videos bcoz the way of presenting, PPT designing and cool heart with good explanation.
@ARCTutorials3 жыл бұрын
Thank you so much Suresh for your kind words and support 🙏
@mumps594 жыл бұрын
Hi there, thanks for these videos. Just wondering what the difference is between [ngClass] and [class]. If I google it, mostly I see that you can use [class] with a [class.]=boolean syntax, however from my experimentation it seems I can use the two interchangeably, at least in terms of [class]="'classname'", [class]="'classname1 classname2'"], [class]="expression", [class]="object", etc. If I 'inspect' my output I can see a small difference, but output is the same. I feel like I'm missing something obvious.
@danielw15924 жыл бұрын
hi Sridhar, I love your angular tutorials. I was just wondering if you had any videos on manipulating the DOM (like adding or removing classes from HTML elements from the component). Thanks.
@ARCTutorials4 жыл бұрын
Hi Daniel. We do manipulation with just setting classes to true or false in Angular or based on a condition. I know you are trying to relate/connect with jquery sort of DOM manipulation, but no we don't do that in Angular. Its all driven by variables and conditions
@webdevelopment98083 жыл бұрын
In object type variation of ngClass should we use quotes for the class names inside the object?
@ankeshanand64962 жыл бұрын
Hello sir single and double quotes are quite confusing can u help to identify?
@vikneshramesh35294 жыл бұрын
Super sir
@ARCTutorials4 жыл бұрын
Thank you Ramesh. Glad you liked the tutorials
@kusumadhanush57653 жыл бұрын
What is the difference between normal class in the html and ngClass
@vivekg4823 жыл бұрын
i have 2 components , if 1st component is updated then then automatically 2nd component must updated, how can we do this, please explain?
@ARCTutorials3 жыл бұрын
Hi Vivek. Pls follow this tutorial and you should be able to do it yourself. kzbin.info/www/bejne/qqPbn2SGfrxjfNE
@sowmyakarumanchi28263 жыл бұрын
👍
@ARCTutorials3 жыл бұрын
Glad you are enjoying the tutorials 👍
@dineshguptha82254 жыл бұрын
Full stack developer avvataniki front end angular choose chesukunta backend suggest me bro
@ARCTutorials4 жыл бұрын
With Angular, best advice I can give you is Node JS and Express JS
@dineshguptha82254 жыл бұрын
Bro front end angular tho patu backend e language suitable ga nerchukunta best bro as a fresher
@ARCTutorials4 жыл бұрын
Hi Dinesh. For Fullstack developer with Angular, the market trend is MEAN stack ( MongoDB, Express JS, Angular and Node JS) I have playlists for the same. Keep watching them and you will learn practical knowledge
@dineshguptha82254 жыл бұрын
@@ARCTutorials thank u so much bro
@0254Manoj3 жыл бұрын
This is ngClass using Method example is showing the below error "Parser Error: Binding expression cannot contain chained expression at the end of the expression [getClsName();]"
@PelpsRoxXx2 жыл бұрын
Just remove the semicolon. It should work.
@sunnykarthik15663 жыл бұрын
sir difference between ngStyle and ngClass . can u explain it.
@PelpsRoxXx2 жыл бұрын
Basically, ngStyle would be setting a style directly into one component and it's more limited in its usage, as you cannot set methods or objects to it. ngClass is a bit more wide and could be used in multiple components, if a master stylesheet is applied to them.
@amanuellebassi72944 жыл бұрын
Thanks, Sridhar. Please check your Buy ARC Tutorials a coffee!
@ARCTutorials4 жыл бұрын
Thank you so much my friend. You have been supporting me from the beginning. I cannot thank you enough for your contribution. The least I can do for you, is to be available whenever you need any help or info. Please do let me know the time, we can always hop on the call quickly. Thanks again.
@amanuellebassi72944 жыл бұрын
@@ARCTutorials It is an expression of a small token of appreciation for your kindness, time, and effort. Great, I will email you in the coming weeks.
@ARCTutorials4 жыл бұрын
Looking forward to talking to you mate!!!
@amanuellebassi72944 жыл бұрын
@@ARCTutorialsThanks so much, my friend.
@mayurpatil27293 жыл бұрын
Hindi main bataon sir plz
@ARCTutorials3 жыл бұрын
Sure Mayur. Will try to add some in hindi tutorials
@abdulhaqsafi1104 жыл бұрын
i am creating reactive form and showing the result in console. but the result is shown in console.log below is my code. import { Component, OnInit } from '@angular/core'; import {FormGroup, FormControl, FormBuilder} from '@angular/forms'; @Component({ selector: 'app-product', templateUrl: './product.component.html', styleUrls: ['./product.component.scss'] }) export class ProductComponent implements OnInit { registrationForm: FormGroup; constructor(private fb: FormBuilder) { this.registrationForm = this.fb.group({ email: new FormControl(), password: new FormControl(), }); } ngOnInit(): void { } // tslint:disable-next-line:typedef SaveData(){ console.log(this.registrationForm.value); } } please guide us what will be the mistake
@rajshreelandage9352 жыл бұрын
currentClasses: Record = {}; setCurrentClasses() { this.currentClasses = { saveable: this.canSave, modified: !this.isUnchanged, special: this.isSpecial }; } how to use this using ngClass?