We have to change the image library of the Image editor to root site image library. Please let us know the suitable options avialable in Rad Editor for MOSS.
1 Answer, 1 is accepted
0
Stanimir
Telerik team
answered on 01 Apr 2010, 12:31 PM
Hi Sukhminder,
Review the following online help article: Image Manager.
Here is some additional information on how the ImagesPaths collection works.
By default, all the libraries from the current site are included in the ImagePaths collection.
When you set path starting without slash (e.g. "ImagesLibrary"), you will refer a local library - library from the current Web. If you set path staring with slash (e.g. /ImagesLibrary), you will refer a library from the SiteCollection (root).
For example: SiteCollection/ImagesLibrary SiteCollection/SubSite1/ImagesLibrary
Lets open the SubSite1 ConfigFile.xml and set the following images path:
<property name="ImagesPaths">
<item>ImagesLibrary</item>
</property>
The ImageManager will load the SiteCollection/SubSite1/ImagesLibrary.
If you set the path with slash the ImageManager will open the SiteCollection/ImagesLibrary e.g.
<property name="ImagesPaths">
<item>/ImagesLibrary</item>
</property>
Also you should know that if you set e library such as SiteCollection/SubSite1/ImagesLibrary, the currently logged user should have at least reading rights for all site collections of the path. Otherwise the ImagesLibrary will appear as NOT FOUND in the FileBrowser's tree.
Regards,
Stanimir
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.