Hi,
i can get the SiteRelative file path from ImageManager with the below code:
- document.getElementById("imageFld").value = imgs[imgs.length-1].getAttribute("src_cetemp");
But i can't get Relative filepath from FileManager. You also have the same problem.
How can i get SiteRelative path from FileManager?
My Code ise below;
-
- <div class="Gizle">
- <input type="text" name="DOSYA" id="DOSYA" size="50" class="CleanFld" value="" />
- <input id="BtnDosyaFile" type="button" value="Dosya Seçin"/>
- </div>
- <div style="clear:both;">
-
-
- <script type="text/javascript">
- $(document).ready(function(){
-
- var edDosyaFile = document.getElementById("CE_edDOSYAFile_ID");
-
- $("#BtnDosyaFile").click(function(){
- edDosyaFile.FocusDocument();
- var editdoc = edDosyaFile.GetDocument();
- edDosyaFile.ExecCommand('new');
- edDosyaFile.ExecCommand('insertdocument');
- fnFileToDosyaFile();
- });
-
- function fnFileToDosyaFile(){
- var editdoc = edDosyaFile.GetDocument();
- var links = editdoc.getElementsByTagName("a");
- if(links.length>0&&links[links.length-1].href!=""){
- document.getElementById("DOSYA").value = links[links.length-1].href;
- } else{
- setTimeout(fnFileToDosyaFile,500);
- }
- }
- });
- </script>
-
-
-
- .....editor codes...
- ......
-
-
- </div>
-
My ASP Code is below,
- Set edDosyaFile = New CuteEditor
- edDosyaFile.ID = "edDOSYAFile"
- edDosyaFile.ConfigurationPath = "Includes/Editor/Files/Configuration/DosyaSec.config"
- edDosyaFile.Width = 200 :CodeEdID.Height = 200
- edDosyaFile.Text = ""
- edDosyaFile.Draw()
My config file (DosyaSec.config) is below;
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <contextmenu>
- </contextmenu>
-
- <codeviewToolbars>
- </codeviewToolbars>
-
- <toolbars>
- </toolbars>
- </configuration>
Best regards..