Re: [ANNOUNCE] MyFaces Core v2.0.0-alpha Release

2009-11-30 Thread Leonardo Uribe
Hi Myfaces Core 2.0.0-alpha still not pass all TCK tests, but working hard to get things done. The idea of doing an alpha release is give the people interested the oportunity to try it and report any bugs that could appear. Note this jsf version has a lot of changes and feedback is most welcome.

Re: [ANNOUNCE] MyFaces Core v2.0.0-alpha Release

2009-11-30 Thread Delos
Hi, Just want to know if MyFaces Core 2.0.0 has passed the TCK? If not , is there any plan for it? Thanks! 2009/12/1 Leonardo Uribe > The Apache MyFaces team is pleased to announce the release of MyFaces Core > 2.0.0-alpha. > > MyFaces Core is a JavaServer(tm) Faces 2.0 implementation as spec

Re: [EXTVal] Validators wihtout implicit required validations

2009-11-30 Thread Gerhard Petracek
short addition: i see your point and i’ll change that. for now: my previous post contains a list of simple solutions you can use. regards, gerhard http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in English and German Professional Support for Apache MyFaces

Implement tomahawk-sandbox with tomahawk-1.1.9

2009-11-30 Thread Julián Osorio Amaya EuphoriaIT
Greetings!!! I'm working on a JSF web app using tomahawk 1.1.9 but now I want to implement Sandbox to use the inputSuggestAjax tag. Actually I'm using JDeveloper 10.3.3.1 but after adding the tomahawk-sandbox-1.1.9-SNAPSHOT.jar to the project's library the app doesn't run. How can I solve thi

Re: [EXTVal] Validators wihtout implicit required validations

2009-11-30 Thread Gerhard Petracek
hi, it's a bit different. the parameter mentioned by jakob is a jsf 2.0 parameter especially for the jsr 303 integration. if you set it to true, the not-null constraint will be interpreted like required (= true). extval uses it in an abstract class in a similar way. that means: you just have to us

[ANNOUNCE] MyFaces Core v2.0.0-alpha Release

2009-11-30 Thread Leonardo Uribe
The Apache MyFaces team is pleased to announce the release of MyFaces Core 2.0.0-alpha. MyFaces Core is a JavaServer(tm) Faces 2.0 implementation as specified by JSR-314. MyFaces Core 2.0.0-alpha is available in both binary and source distributions. * http://myfaces.apache.org/download.

Re: [TRINIDAD] How do I use the selector af|train::join to draw a line between two statons?

2009-11-30 Thread Jeanne Waldman
In the trinidad-demo, check out the suede.css file. It renders the train nicely. I copied this from the file: /*train */ af|train::stop:selected-icon { content:url('/skins/suede/images/trVisStop.png'); } af|train::join:unvisited, af|train::join:disabled, af|train::join-overflow { background-ima

pop up for delete confirmation

2009-11-30 Thread pbreen
I am using the Tomahawk set of tags for this project. I need a pop to confirm the deletion of a record. There doesn't seem to be any concept of a popup in JSF or Tomahawk. I can use a basic javascript cofirm popup and functionaly it works perfect but the color scheme doesn't match my applica

Re: [EXTVal] Validators wihtout implicit required validations

2009-11-30 Thread Jakob Korherr
Hi Markus, Take a look at the javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL config parameter in web.xml. Setting this to true will cause that your property "input" will be null, if the user submits an empty field and thus @Length will not be processed. Also take a look at http://js

[EXTVal] Validators wihtout implicit required validations

2009-11-30 Thread Dreher, Markus
Hi all, i want to validate a field only when the user filled it out. It's not a reuqired field, but when it is filled out, the input should be at least for example 3 digits. @Length(minimum=3, maximum = 60) private String input; With @Length this leads to a required field. Do i miss so