Hi
I use different paths for the editor and the viewer part of my application.
Editor: http://someurl.com
Viewer: http://someotherurl.com/
When I insert any media (image, movie, file, flash) through one of the managers I use the absolute path. Images (and other media) then get the url http://someurl.com/Images/someimage.jpg when viewing from http://someotherurl.com/.
Absolute path example:
The problem here is that for Movies and Flash IE uses another url param than other browsers.
Example:
IE uses the value of param with name URL, all other browsers use the src value inside the <embed> tag.
How can I set RadEditor to use absolute paths on the param URL?
I use different paths for the editor and the viewer part of my application.
Editor: http://someurl.com
Viewer: http://someotherurl.com/
When I insert any media (image, movie, file, flash) through one of the managers I use the absolute path. Images (and other media) then get the url http://someurl.com/Images/someimage.jpg when viewing from http://someotherurl.com/.
Absolute path example:
| RadEditor.EnableFilter(Telerik.Web.UI.EditorFilters.MakeUrlsAbsolute); |
The problem here is that for Movies and Flash IE uses another url param than other browsers.
Example:
| <object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" width="150" height="150" type="application/x-oleobject"> |
| <param name="URL" value="/Media/V2.avi"> |
| <embed src="http://someurl.com/Media/V2.avi" width="150" height="150" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer"> |
| </object> |
IE uses the value of param with name URL, all other browsers use the src value inside the <embed> tag.
How can I set RadEditor to use absolute paths on the param URL?