Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorLink creation: Is it possible to get full path to the file instead of the linkclick.aspLink creation: Is it possible to get full path to the file instead of the linkclick.asp
Previous
 
Next
New Post
12/10/2009 3:55 AM
 

 I can't seem to figure out how to turn off the linkclick stuff. How do I make the editor not track the link and therefore write the full path to the file instead of the linkclick.asp?

 

 
New Post
12/10/2009 6:00 AM
 

uncheck tracking, logging and open in new window when entering the link in browse server.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
12/11/2009 3:14 AM
 

All check box has been unchecked ...

You can check this in the forume FCKEditor Insert/link

Use selected link

And Have :

URL

Instead: www.dotnetnuke.com/CoreTeam/BlogFiles/PikeMarket.jpg
 

 
New Post
12/11/2009 4:46 AM
 

hmm, that used to work in some versions. you might copy the target link into the "insert link" dialog instead, atm I don't have another solution,.

please post an enhancement request into the public tracker (2nd from top) at support.dotnetnuke.com to add an option, which link type to use.


Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
12/18/2009 11:12 AM
 

Evgeny Grigoryev wrote

 I can't seem to figure out how to turn off the linkclick stuff. How do I make the editor not track the link and therefore write the full path to the file instead of the linkclick.asp?

 

 

Temporary solution

Add some chages in <DotNetNuke Root>\Providers\HtmlEditorProviders\Fck\fcklinkgallery.aspx

1. Change

<script type="text/javascript" language="javascript">
            function OpenFile( fileUrl ){
                if (!window.top.opener) {
                    window.returnValue = fileUrl;
                    window.close();    }
                else {
                    window.top.opener.SetUrl( fileUrl ) ;
                    window.top.close() ;
                    window.top.opener.focus() ;}
            }
  
    </script>

into (add  function GetFilePath())

<script type="text/javascript" language="javascript">
            function OpenFile( fileUrl ){
                if (!window.top.opener) {
                    window.returnValue = fileUrl;
                    window.close();    }
                else {
                    window.top.opener.SetUrl( fileUrl ) ;
                    window.top.close() ;
                    window.top.opener.focus() ;}
            }

            function GetFilePath(){
                return '<%= PortalSettings.HomeDirectory %>'+document.getElementById('ctlURL_cboFolders').options[document.getElementById('ctlURL_cboFolders').selectedIndex].text+document.getElementById('ctlURL_cboFiles').options[document.getElementById('ctlURL_cboFiles').selectedIndex].text
            }

    </script>

2. Change:

<td><asp:LinkButton id="cmdSelect" resourcekey="cmdSelect" cssclass="CommandButton" runat="server">Select created link</asp:LinkButton></td>

Into

           <td>
                    <table id="link" >
                            <tr>
                                <td><asp:LinkButton id="cmdSelect"  resourcekey="cmdSelect" cssclass="CommandButton" runat="server">Select created link</asp:LinkButton>
                                    </td>
                                <td><a id="cmdSelectFilePath" href="" title='Full file path' class="CommandButton" onclick="return OpenFile(GetFilePath())" >Use Full Path</a>
                                    </td>
                            </tr>
                        </table>

                    <script language="javascript">
                        if( document.getElementById("ctlURL_cboFolders")) {
                            document.getElementById("cmdSelectFilePath").style.display = "block";}
                        else {
                            document.getElementById("cmdSelectFilePath").style.display = "none";}
                     </script>
              </td>

 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Provider and Extension ForumsProvider and Extension ForumsFCKeditorFCKeditorLink creation: Is it possible to get full path to the file instead of the linkclick.aspLink creation: Is it possible to get full path to the file instead of the linkclick.asp


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out