A few extval questions

2010-04-16 Thread Johan Borchers
Hello, I'm using Tomcat 6.0.20, Mojarra 1.2_14, RichFaces 3.3.3 and Extval 1.2.3 on Mac en Windows with Java 1.6.0_17 The Extval libs are: extval-annotation-based-bypass-validation-1.2.3.jar myfaces-extval-core-1.2.3.jar myfaces-extval-generic-support-1.2.3.jar

Re: [Trinidad] PPR issue with Firefox when returning from Dialog

2010-04-16 Thread Cédric Durmont
I don't think I have issues with Firefox and dialogs in my apps. - Do you have an id on the button that starts the dialog, and a partialTrigger attribute on the component you want to refresh ? - Do that button have a returnListener ? I think the button doesn't get refreshed on dialog close if no

[TRINIDAD] problems running the blank example

2010-04-16 Thread kakuschky
Hello, I'm just starting with trinidad and I try to get the trinidad blank example up and running as eclipse (Galileo) dynamic web project with JSF 1.2 and tomcat 6. But unfortunately it fails. Can someone give me a hint which part of the configuration I have to check / correct? There is

Re: grid layouts in Tobago

2010-04-16 Thread tobagouser
Any suggestions on this please.. tobagouser wrote: HI All, I am using tobago to put some pages.I have a requirement, Inside a box left part is having input rows (tc:in) and remaining half right part has a separate border and css and has input rows (tc:in and select boxes). I can not

Re: grid layouts in Tobago

2010-04-16 Thread Udo Schnurpfeil
Hi tobagouser, you can put 2 tc:panel in the box like this: tc:box f:facet name=layout tc:gridLayout columns=*;*/ /f:facet tc:panel f:facet name=layout tc:gridLayout rows=fixed;fixed/ /f:facet tc:in/ tc:in/ tc:in/ /tc:panel tc:panel f:facet name=layout tc:gridLayout rows=fixed;fixed/

Re: SEVERE: No RenderingContext has been created.

2010-04-16 Thread Nila_1
hi, how did you resolve this issue...i'm facing the same problem now. but i have the following view handler in my faces-config. view-handler org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl /view-handler Thanks. Bjørn T Johansen

Re: A few extval questions

2010-04-16 Thread Rudy De Busscher
Hi Johan, Q1 Yes, you can combine the JSF validation with ExtVal, like you already found out since you got 3 messages, 2 of extval and one of JSF. Although, the idea is that you do everything with ExtVal. You can use @Length as a replacement for the f:validateLength tag. Except for the required

Re: A few extval questions

2010-04-16 Thread Gerhard Petracek
hi johan, some additions: as mentioned by rudy: the required-attribute is quite special in combination with component initialization. i'll add some information about it in our new wiki. concerning your concrete issues: it would be nice if you can provide a link to a small demo app which

Re: A few extval questions

2010-04-16 Thread Werner Punz
Am 16.04.10 13:16, schrieb Gerhard Petracek: hi johan, some additions: as mentioned by rudy: the required-attribute is quite special in combination with component initialization. i'll add some information about it in our new wiki. concerning your concrete issues: it would be nice if you can

Re: grid layouts in Tobago

2010-04-16 Thread tobagouser
Hi Udo, Thanks for you reply. if I understand correctly first grid is to to divide box in two halfs left side and right sides , and apply first second grid for left half and third grid for right half. My requirement is box sould be divided in to two halfs left side ,right side.left side has 10

Re: A few extval questions

2010-04-16 Thread Johan.borchers
Hello Rudy and others. Thanks for the answers . Q1 Disappearing of the field value with JSF validation only appears if I first submit the form with 3 invalid fields and the JSF validation is triggered. After that the field is not updated anymore by selecting a row from the list. Only after

Re: A few extval questions

2010-04-16 Thread Rudy De Busscher
Johan Do I understand that if I use the DEACTIVATE_COMPONENT_ INITIALIZATION with value true I do disable the JSF validation at all in favor of the ExtVal validation? The other way around. With that parameter set to true, ExtVal doesn't touch the 'classic' attributes of the components in

Re: grid layouts in Tobago

2010-04-16 Thread tobagouser
Thanks Udo.That worked. tobagouser wrote: Hi Udo, Thanks for you reply. if I understand correctly first grid is to to divide box in two halfs left side and right sides , and apply first second grid for left half and third grid for right half. My requirement is box sould be divided

Re: A few extval questions

2010-04-16 Thread Gerhard Petracek
hi johan, @Validator besides @Validator you can implement an annotation + an adapter [1] for your existing jsf validators which need special attributes. required-attribute by default extval shouldn't modify the required-attribute (if you don't use a component lib which offers e.g. client-side