Why both can't fired ? Only Alert one is displaying not Confirm one if i use both of them together..

X.Msg.Confirm("Delete", "Are you sure want to delete ?",
			            new MessageBoxButtonsConfig
			            {

			                Yes = new MessageBoxButtonConfig { Handler = "", Text = "Yes" },
			                No = new MessageBoxButtonConfig { Handler = "return;", Text = "No" },
			            }).Show();

X.Msg.Alert("Delete", "User has been deleted.").Show();

Will Wait for reply...

Regads
Vik