Include the notfication in action button

Hi, I would like to add a notification to action button

Right now I have the button :

  <RadzenButton Icon="check" ButtonStyle="ButtonStyle.Success" Variant="Variant.Flat" Size="ButtonSize.Medium" Click="@((args) => SaveRow(developers))">
                </RadzenButton>

How I can insert the notification in button "check"

Click=@(args => ShowNotification(new NotificationMessage { Severity = NotificationSeverity.Success, Summary = "Success Summary", Detail ="ECR " + dev.ECR + " & ECO " + @dev.ECO + " Validated", Duration = 4000 })) />

thanks in advance

Not sure what you are asking. If you are looking for NotificationService API check our demos for reference.

Have you the reference please?

The demos for the notification are here. All of them are triggered on a button click.

thanks to your reply.
I think I've described my question incorrectly. I wanted to know if it was possible to put two actions in the declaration of a single button.

You can put as many actions as you want. Just write the required code.

Right, how can I write the notification in :

 <RadzenButton Icon="check" ButtonStyle="ButtonStyle.Success" Variant="Variant.Flat" Size="ButtonSize.Medium" Click="@((args) => SaveRow(developers))">
                </RadzenButton>

Include the code in the SaveRow method. Check our demos that were linked before.