Hi Bindu,
You can achieve the desired result easily with CSS style for flex-direction. I have prepared an example for you:
<style>
.k-dialog-buttongroup {
flex-direction: row-reverse;
}
</style>
<TelerikButton OnClick="@ShowConfirm">Show Confirm with Custom Title</TelerikButton>
@code {
[CascadingParameter]
public DialogFactory Dialogs { get; set; }
async Task ShowConfirm()
{
bool isConfirmed = await Dialogs.ConfirmAsync("Are you sure?", "Confirmation!");
Console.WriteLine($"The user is sure: {isConfirmed}.");
}
}
I'm also marking this public item here as "Completed" as the new Dialog component allows all kinds of customizations.
Regards,
Hristian Stefanov
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.