How to compare two jbo.domain.Dates in EL?
I am trying to disable certain component (JSF) with the EL based on certain date comparison. For example:
disabled="#{bindings.Whatever.Date1 > bindings.Whatever.Date2}"
Both dates are oracle.jbo.domain.Date
and it throws javax.faces.el.ReferenceSyntaxException...
any idea how to do it properly?