Re: Message bundle problem

2009-03-06 Thread Gilles Demarty
On Fri, Mar 6, 2009 at 11:30 AM, wrote: > Hi, > > > > I need to access a message bundle property like so: > > > > > Actually, i would add those specific message on a bundle on its own : Not that it is a really satisfactory solution, but it will serve your need quite well. my €.02 Gilles

Re: [RichFaces] Show Root Node in Tree

2009-01-06 Thread Gilles Demarty
Richfaces way of communication is through their user forum : http://jboss.com/index.html?module=bb&op=viewforum&f=261 Myfaces is not related to richfaces happy new year On Tue, Jan 6, 2009 at 11:31 AM, jhomuth wrote: > Hello List, > > I hope this List will be the correct one for my question. If

Re: MyFaces + RichFaces

2008-11-15 Thread Gilles Demarty
yes no problem with that. Check the richfaces developper guide for further explaination. 2008/11/15 tong123123 <[EMAIL PROTECTED]>: > I want to use some RichFaces components > in a MyFaces project, what should I do? > can I just copy the richfaces-ui-3.2.1.GA.jar, > neglect the richfaces-impl

Re: Error handling when exception occured

2008-11-14 Thread Gilles Demarty
Hello Hannes, > I've successfully created an error page when an http error (e g. 404) > occurs. But when an exception will be raised, I only see the standard > myFaces error page. Do I miss something in the web.xml definitions. You have to add into your web.xml org.apache.myfaces.ERROR_HAN

Re: Tomahawk component for two listboxes ?

2007-01-16 Thread Gilles Demarty
Hi Markus, in sandbox : the SelectManyPickList http://myfaces.apache.org/sandbox/selectManyPicklist.html hth, gilles 2007/1/16, Markus Jais <[EMAIL PROTECTED]>: hello I am searching for a compononent with two list boxes and two buttons between them. so buttons should have two arrows pointin

Re: How to get client browser's resolution.

2007-01-03 Thread Gilles Demarty
Hi adrian, a Css Solution : http://alistapart.com/articles/switchymclayout hope this help. Not really related to myfaces, tough. Gilles 2007/1/3, Adrian Mitev <[EMAIL PROTECTED]>: Hi all! I want to get the width and height of the client brower and show different css styles according to the s

Re: Best Practice - Converting raw property values of Beans

2006-10-25 Thread Gilles Demarty
read the section 'Multilanguage Support' from http://wiki.apache.org/myfaces/Create_and_Display_Messages It may do the trick. 2006/10/25, Bieringer Dominik <[EMAIL PROTECTED]>: Hi all, today I've wondered again about how to convert property values of Beans to locale specific strings in

Re: So let me get this straight....

2006-10-25 Thread Gilles Demarty
I have indeed looked at that. Is there a way to customize the resulting error message? yes, you can load a message bundle and redefine the default error messages http://jsffaq.com/Wiki.jsp?ptitle=How+can+I+override+the+default+validation+messages%3F&page=HowCanIOverrideTheDefaultValidationMessa

Re: Popup Tag with SSL

2006-08-22 Thread Gilles DEMARTY
hello rené, there is already a ticket open concerning this issue : TOMAHAWK-402 : http://issues.apache.org/jira/browse/TOMAHAWK-402?page=all and a workaround provided by the thread : http://thread.gmane.org/gmane.comp.jakarta.myfaces.user/18633/focus=18736 hth Gilles

Re: validation method problem

2006-07-19 Thread Gilles DEMARTY
another dirty solution is to write a custom UIInput component, and override on this method the processValidate() (more exactly the 'validate()' ) to allow validation on the 'null value' (remove the 'if (submittedValue == null) return;') 2006/7/19, Kapil Kataria <[EMAIL PROTECTED]>: Hi I need

Re: validation method problem

2006-07-19 Thread Gilles DEMARTY
perfectly normal behavior. The validators are triggered if a non-null value is provided. If this you want to not allow null value, add a required="true" on your input component. (then null will then raise an error, but not call your validator)/ 2006/7/19, array <[EMAIL PROTECTED]>: I have an

Re: Custom Validator problem.

2006-07-18 Thread Gilles DEMARTY
the validator must be done on the second inputCalendar, since the data is not loaded before. You shoud adapt the valildate method accordingly 2006/7/18, Ali Abdel-Aziz Ali <[EMAIL PROTECTED]>: Hello All, I have Custom Validator problem. I have two input calenders and I want to make some validat

Re: Authorization aware component?

2006-06-28 Thread Gilles DEMARTY
Hi martin, i want to have/create an authorization aware (menu/button) component. Every Tomahawk components are user-role aware http://wiki.apache.org/myfaces/User-role_Awareness hope this answers your request

Re: [OT] IntelliJ windows / linux compatibility

2006-06-26 Thread Gilles DEMARTY
among other solution : man dos2unix in vi, the magic command : :%s/$/\r/ if you use version control, svn can force a particular line separator format. don't find any clue on how to set it in intellij, tough anyway, You can set it for new line in the coding style. (Properties|Coding style|Ge

Re: Output Html-Text in Facelet

2006-06-26 Thread Gilles DEMARTY
You can use the t:panelgrid to rendre that kind of display if n is constant. otherwise, you can use the t:dataList if n vary. 2006/6/26, Chen, Wei <[EMAIL PROTECTED]>: Hi all, asummed I have the following html-text/code as a string: ... name-1val-1 name-2val-2 ... name-nval-n What a t

Re: SubView and CSS ID selectors

2006-06-19 Thread Gilles DEMARTY
Hi kevin, forceId="true" is your friend on all t: components [1] http://myfaces.apache.org/tomahawk/forceId.html 2006/6/19, Kevin <[EMAIL PROTECTED]>: Hello, Using a within my layout like below:

Re: Comments in JSP files

2006-06-07 Thread Gilles DEMARTY
Short answer: * are html (or xml/xhtml) comments and are rendered in the generated page * <%-- design comments --%> are jsp comments and are not rendered in the generated page. Both accept multilign comments 2006/6/7, Julian Ray <[EMAIL PROTECTED]>: Has anyone figured out how to include so

Re: JSF Livecycle Problem - Events before setters!

2006-06-01 Thread Gilles DEMARTY
Hi Remo, My question is, how do I get the setter set before the event is processed? in fact you have to do it "by hand" in the valueChangeListener. The new value is bunddled into the event. something like setCurrentKpiGroup(e.getNewValue()) should do the trick. (where e is the ValueChangeEvent

Re: Tomahawk popup over HTTPS

2006-04-27 Thread Gilles DEMARTY
> In shorter terms, is there any reason why the Tomahawk Popup would cause data > to be passed over HTTP when it is used on a site which is served over HTTPS? > Is there any workaround/solution? > Hi Jean, Got the same issue here. No workaround found until now. Maybe it's worth a JIRA ticket.