Can someone post a trivial example outlining the use of bind with the relevant attribute to conditionally display different outputs. I can't seem to get it to work and i've been trying to use examples but none seem to work in formfaces.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Can someone post a trivial example outlining the use of bind with the relevant attribute to conditionally display different outputs. I can't seem to get it to work and i've been trying to use examples but none seem to work in formfaces.
John has answered this in another post:
http://sourceforge.net/forum/forum.php?thread_id=2023238&forum_id=458081
You have to use the following css declaration to hide disabled controls:
.xforms-disabled {
display: none;
}
-Kev