Hello Joseph,
You can use the code below to resize the Find and Replace dialog from the server:
protected override void OnPreRenderComplete(System.EventArgs e)
{
base.OnPreRenderComplete(e);
DialogDefinition imagePropertiesDialog = RadEditor1.GetDialogDefinition("FindAndReplace");
imagePropertiesDialog.Height = Unit.Pixel(900);
imagePropertiesDialog.Width = Unit.Pixel(900);
}
All the best,
Rumen
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get now >>