0 Replies Latest reply on May 20, 2009 3:39 PM by mike82

    Mixing HTML and JSF components

    mike82
      hi,

         tired of <h:panelGrid> and columnClasses attribute I mix html and jsf components on my page. That looked very lovely until I get to this point:

      <table style="width: 100%;">
         <tbody>
            <tr>
              <td>
                 <h:selectOneMenu>
                    <f:selectItems value="#{bbb.aaa}"/>
                 </h:selectOneMenu>
              </td>
            </tr>
         </tbody>
      </table>

      what happened here is, jsp component has been evaluated to:
      </tr>
      <tr>
      <td>
         <select...
        </td>
      </tr>

      ...destroying the layout. Any way to deal with this? Perhaps another alternative solution to h:panelGrid?

      Regards,
      Michal