Using ChangeDetectionStrategy in Angular 6, need to add conditional class on child element (ng-class)
up vote
0
down vote
favorite
I have a parent component
export class ItemsComponent implements OnInit {
itemList: any;
constructor(private itemService:ItemService) {}
ngOnInit() {
this.itemService.getJsonData()
.subscribe(response => {
this.itemList = response;
}, (error) => {
console.log(error);
});
}
selectCheckItemParent(event): void{
for(var counter=0; counter<this.itemList.length;counter++){
if(this.itemList[counter].itemId==event.target.dataset.cid){
this.itemList[counter].isSelected = event.target.checked;
}
}
}
}
And a Child Component
export class ListViewComponent implements OnInit {
@Input() itemList : Item;
@Output() selectCheckItemParent = new EventEmitter<string,string>();
constructor(private cdr: ChangeDetectorRef) {}
get runChangeDetection() {
console.log('ListView - Checking the view');
return true;
}
selectCheckThisItem(event, itemSelected){
this.selectCheckItemParent.emit(event);
}
}
With HTML
<li *ngFor="let item of itemList;" >
<input attr.data-cid="{{item.cid}}" (change)="selectCheckThisItem($event, item)" type="checkbox" class="checkbox-custom" #isSelected ng-class="{ item.isSelected == true : 'checked'}" />
<span class="row items-div" ng-class="{ item.isSelected==true : 'selectedItem' }">
{{item.isSelected}}
</span>
</li>
Now this span inside the li tag shows true/false when any change is detected but when isSelected is true the ng-class should add "selectedItem" class, which is not happening.
angular angular-changedetection
add a comment |
up vote
0
down vote
favorite
I have a parent component
export class ItemsComponent implements OnInit {
itemList: any;
constructor(private itemService:ItemService) {}
ngOnInit() {
this.itemService.getJsonData()
.subscribe(response => {
this.itemList = response;
}, (error) => {
console.log(error);
});
}
selectCheckItemParent(event): void{
for(var counter=0; counter<this.itemList.length;counter++){
if(this.itemList[counter].itemId==event.target.dataset.cid){
this.itemList[counter].isSelected = event.target.checked;
}
}
}
}
And a Child Component
export class ListViewComponent implements OnInit {
@Input() itemList : Item;
@Output() selectCheckItemParent = new EventEmitter<string,string>();
constructor(private cdr: ChangeDetectorRef) {}
get runChangeDetection() {
console.log('ListView - Checking the view');
return true;
}
selectCheckThisItem(event, itemSelected){
this.selectCheckItemParent.emit(event);
}
}
With HTML
<li *ngFor="let item of itemList;" >
<input attr.data-cid="{{item.cid}}" (change)="selectCheckThisItem($event, item)" type="checkbox" class="checkbox-custom" #isSelected ng-class="{ item.isSelected == true : 'checked'}" />
<span class="row items-div" ng-class="{ item.isSelected==true : 'selectedItem' }">
{{item.isSelected}}
</span>
</li>
Now this span inside the li tag shows true/false when any change is detected but when isSelected is true the ng-class should add "selectedItem" class, which is not happening.
angular angular-changedetection
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a parent component
export class ItemsComponent implements OnInit {
itemList: any;
constructor(private itemService:ItemService) {}
ngOnInit() {
this.itemService.getJsonData()
.subscribe(response => {
this.itemList = response;
}, (error) => {
console.log(error);
});
}
selectCheckItemParent(event): void{
for(var counter=0; counter<this.itemList.length;counter++){
if(this.itemList[counter].itemId==event.target.dataset.cid){
this.itemList[counter].isSelected = event.target.checked;
}
}
}
}
And a Child Component
export class ListViewComponent implements OnInit {
@Input() itemList : Item;
@Output() selectCheckItemParent = new EventEmitter<string,string>();
constructor(private cdr: ChangeDetectorRef) {}
get runChangeDetection() {
console.log('ListView - Checking the view');
return true;
}
selectCheckThisItem(event, itemSelected){
this.selectCheckItemParent.emit(event);
}
}
With HTML
<li *ngFor="let item of itemList;" >
<input attr.data-cid="{{item.cid}}" (change)="selectCheckThisItem($event, item)" type="checkbox" class="checkbox-custom" #isSelected ng-class="{ item.isSelected == true : 'checked'}" />
<span class="row items-div" ng-class="{ item.isSelected==true : 'selectedItem' }">
{{item.isSelected}}
</span>
</li>
Now this span inside the li tag shows true/false when any change is detected but when isSelected is true the ng-class should add "selectedItem" class, which is not happening.
angular angular-changedetection
I have a parent component
export class ItemsComponent implements OnInit {
itemList: any;
constructor(private itemService:ItemService) {}
ngOnInit() {
this.itemService.getJsonData()
.subscribe(response => {
this.itemList = response;
}, (error) => {
console.log(error);
});
}
selectCheckItemParent(event): void{
for(var counter=0; counter<this.itemList.length;counter++){
if(this.itemList[counter].itemId==event.target.dataset.cid){
this.itemList[counter].isSelected = event.target.checked;
}
}
}
}
And a Child Component
export class ListViewComponent implements OnInit {
@Input() itemList : Item;
@Output() selectCheckItemParent = new EventEmitter<string,string>();
constructor(private cdr: ChangeDetectorRef) {}
get runChangeDetection() {
console.log('ListView - Checking the view');
return true;
}
selectCheckThisItem(event, itemSelected){
this.selectCheckItemParent.emit(event);
}
}
With HTML
<li *ngFor="let item of itemList;" >
<input attr.data-cid="{{item.cid}}" (change)="selectCheckThisItem($event, item)" type="checkbox" class="checkbox-custom" #isSelected ng-class="{ item.isSelected == true : 'checked'}" />
<span class="row items-div" ng-class="{ item.isSelected==true : 'selectedItem' }">
{{item.isSelected}}
</span>
</li>
Now this span inside the li tag shows true/false when any change is detected but when isSelected is true the ng-class should add "selectedItem" class, which is not happening.
angular angular-changedetection
angular angular-changedetection
asked Nov 20 at 13:54
Jaya Parwani
9216
9216
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
When passing in an object to ngClass, the keys are the classes you want to add. The values are truthy or falsy expressions which will add or remove that class.
The ngClass directive should be written in camelCase, and should be surrounded by square brackets, which tell Angular to evaluate the value as a template expression.
So your expression should look like this:
<span [ngClass]="{ selectedItem: item.isSelected }">
add a comment |
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',
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394566%2fusing-changedetectionstrategy-in-angular-6-need-to-add-conditional-class-on-chi%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
up vote
1
down vote
When passing in an object to ngClass, the keys are the classes you want to add. The values are truthy or falsy expressions which will add or remove that class.
The ngClass directive should be written in camelCase, and should be surrounded by square brackets, which tell Angular to evaluate the value as a template expression.
So your expression should look like this:
<span [ngClass]="{ selectedItem: item.isSelected }">
add a comment |
up vote
1
down vote
When passing in an object to ngClass, the keys are the classes you want to add. The values are truthy or falsy expressions which will add or remove that class.
The ngClass directive should be written in camelCase, and should be surrounded by square brackets, which tell Angular to evaluate the value as a template expression.
So your expression should look like this:
<span [ngClass]="{ selectedItem: item.isSelected }">
add a comment |
up vote
1
down vote
up vote
1
down vote
When passing in an object to ngClass, the keys are the classes you want to add. The values are truthy or falsy expressions which will add or remove that class.
The ngClass directive should be written in camelCase, and should be surrounded by square brackets, which tell Angular to evaluate the value as a template expression.
So your expression should look like this:
<span [ngClass]="{ selectedItem: item.isSelected }">
When passing in an object to ngClass, the keys are the classes you want to add. The values are truthy or falsy expressions which will add or remove that class.
The ngClass directive should be written in camelCase, and should be surrounded by square brackets, which tell Angular to evaluate the value as a template expression.
So your expression should look like this:
<span [ngClass]="{ selectedItem: item.isSelected }">
edited Nov 20 at 14:29
answered Nov 20 at 14:09
Alex K
977510
977510
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394566%2fusing-changedetectionstrategy-in-angular-6-need-to-add-conditional-class-on-chi%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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