How to get SiteRelative link from FileManager Editor

  •  12-21-2009, 7:32 AM

    How to get SiteRelative link from FileManager Editor

    Hi,
    i can get the SiteRelative file path from ImageManager with the below code:
    1. 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;
    1. <!--#edDOSYAFile-->  
    2. <div class="Gizle">  
    3. <input type="text" name="DOSYA" id="DOSYA" size="50" class="CleanFld" value="" />  
    4. <input id="BtnDosyaFile" type="button" value="Dosya Seçin"/> 
    5. </div>  
    6. <div style="clear:both;">  
    7.   
    8. <!--js fn for edDOSYAFile-->  
    9. <script type="text/javascript">  
    10.     $(document).ready(function(){  
    11.    
    12.         var edDosyaFile = document.getElementById("CE_edDOSYAFile_ID");  
    13.    
    14.         $("#BtnDosyaFile").click(function(){  
    15.             edDosyaFile.FocusDocument();  
    16.             var editdoc = edDosyaFile.GetDocument();  
    17.             edDosyaFile.ExecCommand('new');  
    18.             edDosyaFile.ExecCommand('insertdocument');  
    19.             fnFileToDosyaFile();  
    20.         });  
    21.    
    22.         function fnFileToDosyaFile(){  
    23.             var editdoc = edDosyaFile.GetDocument();  
    24.             var links = editdoc.getElementsByTagName("a");  
    25.             if(links.length>0&&links[links.length-1].href!=""){  
    26.                 document.getElementById("DOSYA").value = links[links.length-1].href;  
    27.             } else{  
    28.                 setTimeout(fnFileToDosyaFile,500);  
    29.             }  
    30.         }  
    31.     });  
    32. </script>  
    33. <!--//js fn for edDOSYAFile-->  
    34.    
    35.  <!-- CuteEditor Version 6.3 edDOSYAFile Begin -->   
    36. .....editor codes...  
    37. ......  
    38.  <!-- CuteEditor edDOSYAFile End 9,765625E-02s-->   
    39.    
    40. </div>  
    41. <!--//#edDOSYAFile--> 
     
    My ASP Code is below,
    1. Set edDosyaFile = New CuteEditor  
    2. edDosyaFile.ID = "edDOSYAFile"  
    3. edDosyaFile.ConfigurationPath = "Includes/Editor/Files/Configuration/DosyaSec.config"  
    4. edDosyaFile.Width = 200    :CodeEdID.Height = 200  
    5. edDosyaFile.Text = ""  
    6. edDosyaFile.Draw() 
     
    My config file (DosyaSec.config) is below;
    1. <?xml version="1.0" encoding="utf-8" ?>  
    2. <configuration>  
    3.     <contextmenu>  
    4.     </contextmenu>  
    5.       
    6.     <codeviewToolbars>  
    7.     </codeviewToolbars>  
    8.       
    9.     <toolbars>          
    10.     </toolbars>  
    11. </configuration> 
     
     
     
    My screenshot is below,
     
     
     
     
    Best regards..
View Complete Thread