Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Let me preface this by stating that I have not used the <code>ColdFusion.navigate</code> functionality before but according to the <a href="http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WS0ef8c004658c1089-6262c847120f1a3b244-7fd0.html" rel="nofollow">documentation here</a> the function needs to be a link target. It needs to be in the <code>href</code> portion of an <code>a</code> tag. Look at the example on the documentation page that I referenced. So try adding your code to an <code>a</code> tag like this:</p> <pre><code>&lt;cfoutput&gt; &lt;a href="javascript:ColdFusion.navigate('#request.controlurl#documentHandler/?docareaID=#docareaID#&amp;variableID=#variableID#&amp;Fav=#attributes.Fav#&amp;userid=#attributes.userid#&amp;showform=1&amp;ScannedDocument='+ScanDoc,'handler_#docAreaID#');"&gt;click here&lt;/a&gt; &lt;/cfoutput&gt; </code></pre> <p>Notice that I removed the <code>url:</code> text from your code. That does not appear to be necessary.</p> <p>It also appeared as though you are missing the <code>container</code> parameter for the function. The documentation states that if you are missing this parameter the link will be treated as a normal URL and the entire page will be refreshed. (Although your code was not a link?)</p> <p>Also, I'm not sure if you can reference the ColdFusion variables in the URL of the function like you are. Those are server-side and this function is client-side (javascript). Like I said, I have never used this before but these are my thoughts after reading that documentation.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload