[OFFTOPIC] MyFaces Help Wanted

2006-11-19 Thread Julian Ray
C2Glogistics is looking for one or more experienced JSF/MyFaces developers to help us continue to develop and maintain our flagship JSF application. Our app has been in production for almost 1 year (current version is 1.2) and we have several large world-reknowned customers using the system. We

RE: how does navigation by menu fit in with faces-config.xml file ?

2006-11-19 Thread Tom Innes
Use * option1 /menu_option_1.jsp option2 /menu_option_2.jsp Tom -Original Message- From: barf [mailto:[EMAIL PROTECTED] Sent: November 19, 2006 6:04 PM To: users@myfaces.apache.org Subject: how does navigation by menu fit in with faces-config.xml file ? Don't know

how does navigation by menu fit in with faces-config.xml file ?

2006-11-19 Thread barf
Don't know much about JSF yet - being 'urged' to use it by customer. But if one of the benefits is that the 'controller' part of mvc is exposed in the faces-config.xml file - how would one handle navigation from a menu eg. a jscookmenu where you can navigate to say 25 different destinations ? Sure

RE: charset problem

2006-11-19 Thread Daniel Young
Hi Paul, You may find you need a CharsetFilter: public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException { request.setCharacterEncoding(encoding); chain.doFilter(request, response); } I tried using the

problem with session beans and request beans inheritance...

2006-11-19 Thread Jorge Vásquez
Hi guys, In my application I have an inheritance model with managed beans in which the root bean of the hierarchy is the only one that is in session scope and all the state is kept in it. The other beans just implement behaviour methods and are stateless. My base bean is called: InformationE

Re: AW: PhaseListener behaviour

2006-11-19 Thread Simon Kitching
Pfau, Oliver wrote: Another question...is there a difference is I register a phase listener in my backing bean constructor or in the faces-config.xml Phase listeners are global for the webapp. When one is registered, it goes into a global list of phase listeners. Every time ANY request is pro

Re: myFaces reference documents

2006-11-19 Thread Simon Kitching
If "#{beanName}" references an object that implements Map then the bindings "#{beanName.propname}" and "#{beanName['propname']}" are exactly the same, except that the latter form supports keys with embedded periods, spaces, etc. while the former does not. In the example below, example_messages

Re: OT - Looking for help

2006-11-19 Thread Martin Marinschek
Hi Julian, if you put an [OFFTOPIC] in your subject, you can post job-ads on the myfaces-dev and user list. regards, Martin On 11/18/06, Julian Ray <[EMAIL PROTECTED]> wrote: Is there a good place to post help-wanted ads for the MyFaces community? -- http://www.irian.at Your JSF pow

OT - Looking for help

2006-11-19 Thread Julian Ray
Is there a good place to post help-wanted ads for the MyFaces community?

How to dynamic binding values using accordionPanel

2006-11-19 Thread liulocust
For dynamic binding reason,I want to dynamic bind back-bean values while using accordionPanel,code as below: ... //because the is dynamic ,so I must bind to a back-bean. I want to binding a back-bean to support dynamic ,anybody can t