You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by sp...@indiana.edu on 2005/11/01 01:35:28 UTC

Border in panelgrid

Hi,

I am trying to dsiplay the border in panelgrid. I am sure where I am going wrong. 
I am not getting a border. Here my simple example jsp.

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/extensions" prefix="x"%>

<html>

<%@include file="inc/head.inc" %>
<%@ page import="org.apache.myfaces.examples.tree.*" %>

<body>



<f:view>
<f:loadBundle basename="org.apache.myfaces.examples.treedemo.bundle.Messages"
var="Message"/>


<h:form id="whereForm">
    
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
   
  <h:panelGrid id="one" border="10">
  
  </h:panelGrid>
  
    
</h:form> 
       
</f:view>

</body>

</html>

Please, correct my mistake