Hello,

  I am using appfuse-jsf-1.9.4

  To fix the size of column size in panelGrid I used columnClasses as given
below

<t:panelGrid columns="3" columnClasses="col100,col50,col200" border="0"
width="100%">
    <t:outputLabel styleClass="desc" for="approximatePrintedPages"       
                      value="#{text['workOrder.approximatePrintedPages']}"/>
    <t:inputText styleClass="text small" id="approximatePrintedPages" 
                     
value="#{workOrderForm.workOrder.approximatePrintedPages}" 
                      required="true"/>
    <t:message for="approximatePrintedPages" styleClass="fieldError"/>
    <t:outputLabel styleClass="desc" for="noOfPreliminaryPages" 
                     value="#{text['workOrder.noOfPreliminaryPages']}"/>
    <t:inputText styleClass="text small" id="noOfPreliminaryPages" 
                     value="#{workOrderForm.workOrder.noOfPreliminaryPages}"
required="true"/>
    <t:message for="noOfPreliminaryPages" styleClass="fieldError"/>
</t:panelGrid>

and added the following lines to /web/css/basic.css and 
/web/styles/myfaces.css

.col50 {
    width: 50px;
}

.col100 {
    width: 100px;
}

.col200 {
    width: 200px;
}

.col300 {
    width: 300px;
}

  But this doesn't make any differences.

  What could be wrong?

  Thanks in advance.

Sudheer
-- 
View this message in context: 
http://www.nabble.com/panelGrid-column-formatting-tf4729711s2369.html#a13524221
Sent from the AppFuse - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to