Re: Trouble upgrading from 1.1.2 to 1.1.7

2010-03-02 Thread s . pennec
Hello Jakob, Here is the generated HTML of (a part of) a search form. It includes a Bigger than/smaller than field that was bound to an int in my Java code. The binding was not working anymore, untill I modified the setter of the attribute to take a String and converted to an int afterwards

Re: [Trinidad] resource not available (404) at popup of tr:inputDate

2010-03-02 Thread Joachim Schrod
Donn Aiken wrote: Joachim -- On Mon, Mar 1, 2010 at 1:09 PM, Joachim Schrodjsch...@acm.org wrote: Donn Aiken wrote: On Mon, Mar 1, 2010 at 11:11 AM, Joachim Schrodjsch...@acm.org wrote: Donn, thanks, but that doesn't quite cover my situation. When one uses extension mapping

Query on casablanca skin

2010-03-02 Thread Venkat Ramanan Viswanathan
Hi How do I extend Casablanca skin ? There is a casablancaskin.css part of Trinidad-impl.jar. In my trinidad-config.xml , I have given skin-familycasablancaskin-family. Can I create my css called casablanca_extension.css which will overwrite some things in Casablanca skin ? IN that

Re: file upload using spring web flow

2010-03-02 Thread António Rodrigues
I am not familiar with Trinidad and I might be saying something stupid. But I can see the inputFile does not have a value property mapped to your bean. AJCR On 27 February 2010 17:34, jnl1 itsji...@yahoo.com wrote: hi all... I'm using spring web flow 2.0.8, trinidad 1.0.2. The problem

Trinidad panelFormLayout align question

2010-03-02 Thread Dj Apal [GR]
Hello all. I want to add two tr:inputDate fields (from, to) to a panelFormLayout tag but i don't want to place them one below the other. I used a panelhorizontal layout to do this, but it breaks the alignment with the labels of other input texts that I have. Is there a way to align them one at the

Re: [GSOC] HTML5 Renderkit Start-up

2010-03-02 Thread Leonardo Uribe
Hi I want to ask you some questions with the objective of have a better idea. I'm on vacations but I feel it is important to make this clear from now. So, what are you planning: 1. A HTML5 Renderkit of existing components 2. A new component set with target HTML5 and JSF 2. 3. Something

Re: Help with regular expression

2010-03-02 Thread laredotornado
Thanks but I don't want to do that because if validation fails for both cases (regular expression and length vaildator) then two error messages will be displayed and I just want to have a single error message (e.g. Email address must be of the form ... and between 1 and x characters long.) -

Re: Trinidad panelFormLayout align question

2010-03-02 Thread mamallan . uthaman
May be you can try considering below: tr:panelLabelAndMessage label=Date Range tr:panelHorizontalLayout tr:inputDate simple=true shortDesc=Start date/ tr:inputDate simple=true shortDesc=End date/ /tr:panelHorizontalLayout /tr:panelLabelAndMessage Or else you can try to fiddle

Re: Trouble upgrading from 1.1.2 to 1.1.7

2010-03-02 Thread Jakob Korherr
Hi, You're welcome ;) Hmm. Maybe the submitting via the javascript function iceSubmit() does not function properly. It's really hard to say from this point of view... Have you tried using some of the standard MyFaces components (without ICEFaces)? Regrads, Jakob 2010/3/2

Re: [GSOC] HTML5 Renderkit Start-up

2010-03-02 Thread Ali Ok
Hi Leonardo, First of all, I am not 100% sure about my answers. The purpose of my current work is, to make my GSOC application better by getting your idea. On this mail threadhttp://old.nabble.com/-GSoc--Google-Summer-of-Code-Idea-td27040478.html, we have talked about a new HTML5 renderkit. But

Re: Help with regular expression

2010-03-02 Thread Richard Yee
there are several options for handling this. 1) If you use two validators and only want one message to be displayed, you can use a phase listener to detect the condition and remove the extra message 2) You can use a validator method in your backing bean to handle both validations and display the

Re: Help with regular expression

2010-03-02 Thread Richard Yee
Are you using h:message or h:messages to display the error message? If you should use h:message I think only one message will be displayed. _R On Tue, Mar 2, 2010 at 8:04 PM, Richard Yee richard.k@gmail.com wrote: there are several options for handling this. 1) If you use two validators

Re: Trouble upgrading from 1.1.2 to 1.1.7

2010-03-02 Thread s . pennec
Hi Jakob, I guess that the javascript in iceSubmit() might not the cause of the problem... The int binding that used to work doesn't work anymore, and this is what caused the interface to freeze. Correcting the java code to accept a String made the interface work correctly again I fail