orchestra richfaces - multiple instances of beans are created in conversation scope

2009-12-09 Thread Clemens Punzengruber
Hi I am trying to Use richfaces with orchestra... However I have a problem using the conversation scopes... When I load a jsf page for the first time not one but three instances of the backing bean (which is in the conversation scope) are created... Also I have a h:selectOneMenu with a

resolve el-String to facelets-function

2009-12-09 Thread Daniel Niklas
Hi, i want to resolve an el-String that represents a facelets-function, so i want to invoke the corresponding method. How can i do this? Exampe: // method public static String computeSomething(String param); // faclets-configuration function function-namecomputeSomething/function-name

[TRINIDAD]Suppressing Validation during PartialPageRequest

2009-12-09 Thread Ricardo Rog
Hello, I want to change the state of a navigationBar via partial page request in dependency of a value chosen in a selectOneChoice-dropdown. In the same form are some required-fields. Whenever I enter the form (all required fields are blank) and change the drop-down I get validation errors and

RE: pages not rendered anymore after update from 1.1.6 to 1.2.8

2009-12-09 Thread Michael Heinen
I started this thread so I keep you up to date with my improvements of the migration. Some pages are now working basically with Tiles 2.0.5. 1) Migrated to Tiles2 according this guide: http://tiles.apache.org/migration/index.html 2) Renamed my tiles-definitions file to tiles.xml! Other names

Why is t:selectOneRadio ignoring style, styleClass, and disabledClass?

2009-12-09 Thread laredotornado
Hi, I'm using MyFaces 1.1.6 with Tomahawk 1.1.9. I have this element on my page ... t:selectOneRadio required=true validator=#{domeTour.validateSpecialNeeds} style=background-color:blue; styleClass=specialNeedsRadio

Re: pop up for delete confirmation

2009-12-09 Thread Luka Surija
onclick=return(confirm('#{msg.AreYouSure}')); Luka Surija On 12/03/2009 12:02 PM, Anton Gavazuk wrote: I'm using the basic javascript... 2009/11/30pbr...@johnson.ca 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

Re: pop up for delete confirmation

2009-12-09 Thread pbreen
So that's the second person who is using the regular old javascript confirm dialog. Doesn't it seem odd that there is no tomahawk popup component? My leader seems to think that we shouldn't use this because it is ancient. I wish he could come up with a better excuse than that. However, does

AW: [TRINIDAD]Suppressing Validation during PartialPageRequest

2009-12-09 Thread Döring Markus
Hello, should work if you put the drop-down in an own subform. e.g. tr:form tr:subForm !-- Navigation Items here -- !-- Required form fields here -- /tr:subForm tr:subForm tr:selectOneChoice / /tr:subForm /tr:form

Re: pop up for delete confirmation

2009-12-09 Thread Anton Gavazuk
even if it completely differs from your design it just does what is required in simple way and you dont have to worry how will it look/behave in Opera, Chrome 2009/12/9 pbr...@johnson.ca So that's the second person who is using the regular old javascript confirm dialog. Doesn't it seem

Re: pop up for delete confirmation

2009-12-09 Thread Grant Smith
I use RichFace's ModelPanel for this... On Wed, Dec 9, 2009 at 8:39 AM, pbr...@johnson.ca wrote: So that's the second person who is using the regular old javascript confirm dialog. Doesn't it seem odd that there is no tomahawk popup component? My leader seems to think that we shouldn't use

Re: pop up for delete confirmation

2009-12-09 Thread Cagatay Civici
There's a special component for this in PrimeFaces called confirmDialog integrated with command components. http://97.107.138.40:8080/prime-showcase/ui/confirmDialog.jsf That will work smoothly with Tomahawk. On Wed, Dec 9, 2009 at 4:43 PM, Grant Smith work.gr...@gmail.com wrote: I use

Re: [TRINIDAD]Suppressing Validation during PartialPageRequest

2009-12-09 Thread Mamallan Uthaman
Hi Ricardo, Did you try immediate = true in your selectOneChoice-dropdown? Thanks Mamallan Ricardo Rog wrote: Hello, I want to change the state of a navigationBar via partial page request in dependency of a value chosen in a selectOneChoice-dropdown. In the same form are some

I'm having problems integrating myfaces 1.2.6 with SAP Java Server WebXMLParser

2009-12-09 Thread Dagnino.Thierry
Hi, I'm having problems integrating myfaces 1.2.6 with SAP Java Server (Java 1.5) The problem , I found was in the code for org.apache.myfaces.shared_impl.webapp.webxml.WebXmlParser parse() method. the parse method does the following

Re: I'm having problems integrating myfaces 1.2.6 with SAP Java Server WebXMLParser

2009-12-09 Thread Scott O'Bryan
Hmm interresting. Generally the webapp mapping is in the default namespace is it not? I don't know if J2EE is spec'd this way but most webapp that I've seen are done this way. I'm not a bit fan of using getLocalName in general becuase it can lead to conflicts. That said, if someone

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

2009-12-09 Thread 周恩
As a jsf fans and a java programmer since 1999, I think jsf implements provided by apche is disordered and poor maintained!!! lack of plan, stability, continuity and stability!!! I use myfaces 1.1.1 from 2006(in a product), but I am looking for another jsf implement now, the feeling is not

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

2009-12-09 Thread 周恩
As a jsf fans and a java programmer since 1999, I think jsf implements provided by apache is disordered and poor maintained!!! lack of plan, stability, continuity and stability!!! Mybe something is good in this version, but you can find nothing in next version!The project team especially the

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

2009-12-09 Thread Matthias Wessendorf
Thanks for using myfaces since 2006. I am sure you will like the 2.0 version. If you don't like the process of developement, here is a tip: This is open source which means you are actually able to make a change here! Greetings! Matthias 2009/12/10 周恩 ejbst...@hotmail.com: As a jsf fans and a

RE: 100% CPU Usage and blocking concurrent Threads when using t:saveState

2009-12-09 Thread Mario Ivankovits
For me, this clearly looks like concurrent usage of the request map. All the servlet scopes (session, request, …) are not thread safe and one has to assure that they are not accessed at the same time by multiple threads. This turns out to be hard as e.g. there is no standard how to