Simple question
Hi all,
I have a question regarding JSF.
I have a h:dataTable which receives values (two doubles) from the bean like this:
<h:dataTable id="myId" value="#{myBean.data}" var="tables">
I want to print out in the output the division between the first double and the second double but i am having difficult in doing it so using the JSF tags.
Is it possible to divide in the JSP page using the tags or the dataTable needs to receive the value of the division straightforward?
Hope to hear from you. Thanks

