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

I am using tomahawk dataList, where I use

rowIndexVar="rowIndex"

Inside the dataList I have been using verbatim, where I need to retreive the rowIndex thro' JSP EL ${rowIndex}. How can I achieve it.

share|improve this question
a bit more context would be helpful – Bozho Sep 27 '10 at 19:25

1 Answer

Anything in <f:verbatim> will be treated as template text. If you want to evaluate EL expressions, simply put it outside <f:verbatim>.

I.e. don't do

<f:verbatim><p><h:outputText value="#{rowIndex}" /></p></f:verbatim>

but rather do

<f:verbatim><p></f:verbatim>
    <h:outputText value="#{rowIndex}" />
<f:verbatim></p></f:verbatim>

True, it's ugly, but if you're using JSF 1.2 or newer, you can omit the <f:verbatim> anyway.

<p><h:outputText value="#{rowIndex}" /></p>

Or if you're on JSF 2.0 with Facelets, you can even use unified EL in template text:

<p>#{rowIndex}</p>
share|improve this answer

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.