I have a page with a pair of dialog controls on it. They "pop-up" into the center of the screen and work as they should, aside from the fact they are also constantly visible at the bottom of the page, overlapping each other.
Here's the definitions:
@(Html.Kendo().Dialog()
.Name("confirmVoid")
.Title("Void Ticket")
.Content("Are you sure you want to void this ticket?")
.Width(300)
.Modal(true)
.Visible(false)
.Actions(action =>
{
action.Add().Text("Yes").Action("onYesVoid");
action.Add().Text("No");
})
)
@(Html.Kendo().Dialog()
.Name("voidSuccess")
.Title("Void Ticket")
.Content("The ticket was voided successfully")
.Width(300)
.Modal(true)
.Visible(false)
.Actions(action =>
{
action.Add().Text("OK");
})
)