Angular Dynamically assign action to Button (Click)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have an array to store the alerts to display.
appLevelAlert
const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};
this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);
I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.
<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>
I'm not sure if this is possible, can anyone help me on this?

add a comment |
I have an array to store the alerts to display.
appLevelAlert
const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};
this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);
I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.
<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>
I'm not sure if this is possible, can anyone help me on this?

1
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03
add a comment |
I have an array to store the alerts to display.
appLevelAlert
const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};
this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);
I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.
<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>
I'm not sure if this is possible, can anyone help me on this?

I have an array to store the alerts to display.
appLevelAlert
const alert = {
message: 'Your account is not activated.'
+ ' Select the link in your email inbox to activate your account',
actionName: 'Resend Email',
action: 'resendEmail()'
};
this.appLevelAlert = this.appLevelAlert || ;
this.appLevelAlert.push(alert);
I would like to assign the resendEmail() in appLevelAlert.action to the (Click) of a button.
<clr-alert [clrAlertType]="'info'" [clrAlertAppLevel]="true" *ngFor='let alert of clarityAlertService.appLevelAlert'>
<clr-alert-item>
<span class="alert-text">
{{alert.message}}
</span>
<div class="alert-actions">
<button class="btn alert-action" (click)="[alert.action]">{{alert.actionName}}</button>
</div>
</clr-alert-item>
I'm not sure if this is possible, can anyone help me on this?


asked Jan 3 at 8:57
scholarwithfirescholarwithfire
94210
94210
1
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03
add a comment |
1
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03
1
1
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03
add a comment |
1 Answer
1
active
oldest
votes
This is a simplified working example:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {
readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};
resendEmail() {
console.log('send email');
}
}
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',
autoActivateHeartbeat: false,
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%2f54019047%2fangular-dynamically-assign-action-to-button-click%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
This is a simplified working example:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {
readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};
resendEmail() {
console.log('send email');
}
}
add a comment |
This is a simplified working example:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {
readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};
resendEmail() {
console.log('send email');
}
}
add a comment |
This is a simplified working example:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {
readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};
resendEmail() {
console.log('send email');
}
}
This is a simplified working example:
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<p>{{alert.message}}</p>
<button type="button" (click)="alert.action()">{{alert.actionName}}</button>`
})
export class AppComponent {
readonly alert = {
message: 'Your account is not activated.',
actionName: 'Resend Email',
action: () => this.resendEmail()
};
resendEmail() {
console.log('send email');
}
}
answered Jan 3 at 9:23


splashsplash
11.5k3557
11.5k3557
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.
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%2f54019047%2fangular-dynamically-assign-action-to-button-click%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
1
action: 'resendEmail()' in your example is a string, change it to an inline-function, then call it (click)="alert.action()"
– enno.void
Jan 3 at 9:03