Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As an extension of this question, I'm trying to insert Javascript to a <h:commandButton />'s onclick property as action is already rendering an ajax table.

What I want to do: Get the selected items in a list box and turn them into parameters to be used in a JSF FileServlet. i.e. para2=value1&param=value2&param=value3

Here's what I have:

<script type ="text/javascript">
function myScript() {
    var box = document.getElementbyId('myForm:box');
    var length = box.options.length;
    var paramstring = "";
    for (var i = 0; i < length; i++) {
        if (i != (length - 1) {
            if (box.options[i].selected) {
                paramstring = paramstring + "param=" + box.options[i].value + "&amp;";
            }
        } else {
            paramstring = paramstring + "param=" + box.options[i].value;
        }
    }
    if (document.getElementById('myForm:checkbox').checked) {
        window.location='fileServlet? + paramstring;
    }
}
</script>  

What I get when page is loaded: javax.servlet.ServletException: Error Parsing /page.xhtml: Error Traced[line:15] The content of elements must consist of well-formed character data or markup.

What doesn't trigger exception:

<script type ="text/javascript">
function myScript() {
    var box = document.getElementbyId('myForm:box');
    var length = box.options.length;
    var paramstring = "";

    if (document.getElementById('myForm:checkbox').checked) {
        window.location='fileServlet? + paramstring;
    }
}
</script> 

As soon as I add in for (var i = 0; i < length; i++) or even for (var i = 0; i < 10; i++) the page wouldn't load. Why does it not like the for loop?

share|improve this question

2 Answers

up vote 6 down vote accepted

Facelets is a XML based view technology. The characters <, >, and & are special characters in XML. They needs to be replaced by &lt;, &gt;, and &amp; respectively.

<h:outputScript>
    function downloadPdf() {
        if (document.getElementById('myForm:checkbox').checked) {
            var box = document.getElementById('myForm:box');
            var length = box.options.length;
            var paramstring = "";
            for (var i = 0; i &lt; length; i++) {
                if (box.options[i].selected) {
                    if (paramstring.length &gt; 0) paramstring += "&amp;";
                    paramstring += "param=" + encodeURIComponent(box.options[i].value);
                }
            }
            window.location = "fileServlet?" + paramstring;
        }
    }
</h:outputScript>

(note that I used <h:outputScript> instead of <script type="text/javascript">, this is the recommended way of embedding scripts in Facelets)

Since replacing the JS operators by XML entities makes the JS code harder to read, you could better wrap the entire JS code in a <![CDATA[ block.

<h:outputScript>
    <![CDATA[
        function downloadPdf() {
            if (document.getElementById('myForm:checkbox').checked) {
                var box = document.getElementById('myForm:box');
                var length = box.options.length;
                var paramstring = "";
                for (var i = 0; i < length; i++) {
                    if (box.options[i].selected) {
                        if (paramstring.length > 0) paramstring += "&";
                        paramstring += "param=" + encodeURIComponent(box.options[i].value);
                    }
                }
                window.location = "fileServlet?" + paramstring;
            }
        }
    ]]>
</h:outputScript>

Alternatively (and this actually has my recommendation), you can also just put the entire JS code in its own .js file which you then include in the head:

<h:head>
    <h:outputScript name="global.js" />
</h:head>

with the following in /resources/global.js:

function downloadPdf() {
    if (document.getElementById('myForm:checkbox').checked) {
        var box = document.getElementById('myForm:box');
        var length = box.options.length;
        var paramstring = "";
        for (var i = 0; i < length; i++) {
            if (box.options[i].selected) {
                if (paramstring.length > 0) paramstring += "&";
                paramstring += "param=" + encodeURIComponent(box.options[i].value);
            }
        }
        window.location = "fileServlet?" + paramstring;
    }
}

This way the JS code won't be parsed/validated as XML.

share|improve this answer
Will try it out. Thanks. – luciaengel Dec 2 '10 at 19:12
The javascript doesn't run when I use the <![CDATA[ block or using an external js file. I shortened the code for myScript() to window.location='fileServlet?param=1';, and this only runs if I put it inline with onclick or in <script type="text/javascript"></script> – luciaengel Dec 2 '10 at 19:37
How did you invoke it? By onclick="myScript()" I suppose? – BalusC Dec 2 '10 at 19:39
yes that's correct. – luciaengel Dec 2 '10 at 19:40
While wrapping in <![CDATA[ did you ensure that you followed the instructions in the link as in my answer? There has got to be a ]]> at end. When using an external script, did you ensure that the .js file didn't contain the <script>, but just a function myScript() {} ? – BalusC Dec 2 '10 at 19:41
show 22 more comments

I ran across this post today as I was running into the same issue and had the same problem of the javascript not running with the CDATA tags listed above. I corrected the CDATA tags to look like:

<script type="text/javascript">
//<![CDATA[ 

your javascript code here

//]]>
</script>

Then everything worked perfectly!

share|improve this answer
This means that you're serving HTML as application/xhtml+xml (see also the CDATA link in my answer developer.mozilla.org/en/Writing_JavaScript_for_XHTML). Serving HTML as such is considered harmful (especially in MSIE browser). – BalusC Oct 19 '11 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.