I have a dialog defined but the "mydialog-control" CSS class never gets added to the dialog when it's rendered. Why is that happening?
@(Html.Kendo().Dialog() .Name("SalesTypeWarning") .Title("Warning") .Content(warningTextContent) .Modal(true) .Closable(false) .Visible(false) .Width(600) .HtmlAttributes(new { @class = "mydialog-control"}) .Actions(act => { act.Add().Text("Continue").Primary(true).Action("allowSalesTypeChange"); act.Add().Text("Cancel Change").Action("cancelClicked"); }) .Deferred(true))