I am using the FindAndReplace dialogs. In order to hide the Replace tab in the FindAndReplace dialog, I have copied the EditorDialogs directory from the RadControls installation to the author folder of my application and set the ExternalDialogsPath property of the Radeditor to the path referencing the above created folder. Below is the exact path
ExternalDialogsPath
="~/app/authoring/author/EditorDialogs/EditorDialogsForLOs"
I have also added the below statement in the user control
this._tab._tabs[1].style.display = "none";
the above statement is added just below the statement
this._tab = $find("dialogtabstrip");
In the EditorDialogs folder I have created one more folder named EditorDialogsForLOs where we have the FindAndReplace.ascx user control file.
ExternalDialogsPath is pointing to the folder where I have copied the FindAndReplace.ascx user control. But when I build and install the application I don't see the user control file inthe location and also it is showing the Replace tab in the FindAndReplace popup. It perhaps is not pointing to the exact location and may be it is taking the default location from the dll.
Please let me know if the above procedure is correct. Can't I set the ExternalDialogsPath to the exact location of the FindAndReplace.ascx where ever it is?
Thanks,
Srinivas Vaidya.