Re: [appfuse-user] panelGrid column formatting

2007-11-01 Thread Matt Raible
This is a great way to do it - using CSS (especially unobtrusive CSS) is rarely a bad thing. You might want to make sure it works on all supported browsers (for your customers). Matt On 11/1/07, sudheerp <[EMAIL PROTECTED]> wrote: > > Hi Matt, > > I have created a css file /web/styles/mystyles.

Re: [appfuse-user] panelGrid column formatting

2007-11-01 Thread sudheerp
Hi Matt, I have created a css file /web/styles/mystyles.css, and linked it from the xhtml file the following way and it has given the expected results. #{text['workOrderDetail.title']} I have not modified the panelGrid implementation or remov

Re: [appfuse-user] panelGrid column formatting

2007-11-01 Thread Matt Raible
We've overridden panelGrid in AppFuse to produce and instead of table elements. You may have to modify the implementation, or remove it in faces-config.xml to use the default. Matt On 11/1/07, sudheerp <[EMAIL PROTECTED]> wrote: > > Hello, > > I am using appfuse-jsf-1.9.4 > > To fix the siz

[appfuse-user] panelGrid column formatting

2007-10-31 Thread sudheerp
Hello, I am using appfuse-jsf-1.9.4 To fix the size of column size in panelGrid I used columnClasses as given below and added the following lines to /web/css/basic.css and /web/styles/myfaces.css .col50 { width: 50px; } .col100 { width: 100px; }