Hi
When adding a RadWindow to a page in aspx where can set the ReloadOnShow property to True to force it to reload. However for the RadEditor we add the dialog definitions in the code behind as follows:
When adding a RadWindow to a page in aspx where can set the ReloadOnShow property to True to force it to reload. However for the RadEditor we add the dialog definitions in the code behind as follows:
Dim dlgEditRule As New DialogDefinition("Dialogs/dlgEditRule.ascx", New DialogParameters())
With dlgEditRule
.Modal =
True
.VisibleTitlebar =
True
.VisibleStatusbar =
False
.Title =
"<font size=""2""><b>Edit Rules</b></font>"
.Width = Unit.Pixel(576)
.Height = Unit.Pixel(500)
End With
.AddDialogDefinition(
"TP_EditRule", dlgEditRule)
In the code behind we don't have the option to set the ReloadOnShow property, is there a way to do this?
Thanks
David