Hi Greg,
Thanks for your interest in Orubase product.
You can make the dialog control to open while initially by
means of “AutoOpen” property. Please refer the below code snippet.
[View]
@{
Html.Orubase().Dialog("mydia")
.AutoOpen(true)
.Title("Orubase")
.Template(@<div>This is the
Orubase Mobile Dialog control</div>)
.Modal(true).RenderMode(RenderMode.IOS)
.IOS(ios => ios.DialogMode(MobDialogMode.Alert))
.Render();
}
Please try this and let us know if it helps out.
Regards,
Thivya.