Re: [TRINIDAD] Header rendering multiple times.

2010-03-17 Thread Bart Kummel
Hi Joachim, The pageFlowScope is *the* alternative for t:savestate. I don't see why pageFlowScope is less convenient. I admit you'll have to get used to it. But in the end, I think pageFlowScope is a more structural solution. And pageFlowScope is more versatile, as it can be used across pages

Re: [Trinidad] Problem with chooseDate and chart in Opera

2010-03-17 Thread Bart Kummel
Hi Jozef, I don't have any experience with Opera. (I don't even have it installed...) So I cannot help you on this. But I can give you some clues... - The charts are rendered with SVG and JavaScript. So you should check if Opera can render SVG. Perhaps you'll need some plugin? - The date picker:

Re: [Trinidad] How to get control over tr:table detail disclose link table cell?

2010-03-17 Thread Elmar Kretzer
Hi Bart, the skinning support for the automatic disclose link is not sufficient as far as i can see. E.g. in tr:column i can set the style class via EL so i have full control over the styles in a rendered table row, and I can explicitly change the style class of a disclosed row's table cells.

Re: [Trinidad] Problem with chooseDate and chart in Opera

2010-03-17 Thread Jozef Dropco
Thanks for response Bart, I have tried this before I send this message. I tried other sites with svg in Opera and it works just fine and to chooseDate: there are 2 options inputDate and chooseDate tag, with chooseDate it works but chooseDate should be rendered in my web page as calendar but

Re: [Trinidad] How to get control over tr:table detail disclose link table cell?

2010-03-17 Thread Bart Kummel
Hi Elmar, Yeah, I got your problem. In skinning terms, I think you can summarize your problem by saying that a af|table::disclosureCell skinning selector is missing, right? I can think of a couple of solutions, you also mentioned some. I think for a lot of use cases the addition of

Re: [Trinidad] Old pocket IE

2010-03-17 Thread Walter MourĂ£o
I hacked the AgentFactoryImpl to use the generic pda when the Windows CE is of version 4.20 and it is working fine now... Could somebody confirm the Windows CE 4.20 does not work with Trinidad in a way I open an issue+patch in Trinidad ? FYI, the request headers:

Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Bruno Aranda
Hi, In my fancy little webapp I am using Primefaces dataTable in lazy mode such as in this example[1], and I want to use it with MyFaces 2. However there seems to be a bug and the component decoding is not invoked, so if you navigate to another page of the table the row index does not change. It

How to fill child table records on the row selection of parent table (Nested Tables) in Trinidad.

2010-03-17 Thread navnath kumbhar
Hi All, I am using Trinidad 2.0.0 and myfaces 2.0.0 I am trying to implement nested tables using tr:table tag of Trinidad. It's showing child table on each row of parent table. But the problem is different child records in child table on the selection from parent table's row? Is there any action

Re: [TRINIDAD] Header rendering multiple times.

2010-03-17 Thread Samba
hey, Is it possible that when we explicitly removed the mention of state saving mechanism from web.xml configuration; that every component library is choosing its own default rather and that could be causing things correctly? here is my take at it: 1. state saving configured to client--

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Jakob Korherr
Hi Bruno, I tried the example with my latest build from MyFaces trunk and I got the following exception for every click on the dataTable navigation: 17.03.2010 15:40:34 org.apache.myfaces.view.facelets.DefaultFaceletsStateManagementHelper serializeView SCHWERWIEGEND: Exiting serializeView -

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Jakob Korherr
Hi again, OK, setting the org.apache.myfaces.SERIALIZE_STATE_IN_SESSION config param to false solves the NotSerializableException. Unfortunately it does not solve the other problem.. Regards, Jakob 2010/3/17 Jakob Korherr jakob.korh...@gmail.com Hi Bruno, I tried the example with my latest

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Matthias Wessendorf
On Wed, Mar 17, 2010 at 4:27 AM, Bruno Aranda brunoara...@gmail.com wrote: Hi, In my fancy little webapp I am using Primefaces dataTable in lazy mode such as in this example[1], and I want to use it with MyFaces 2. However there seems to be a bug and the component decoding is not invoked, so

MyFaces 1.2.6, JBoss PortletBridge 1.0.0CR3 Postback with LifeRay 5.2.3

2010-03-17 Thread Sertic Mirko, Bedag
h...@all We are running into a strange problem with MyFaces, Facelets, the JBoss PortletBridge running on LifeRay. It seems that normal h:commandLinks are no longer working. After some debugging, it seems that HtmlResponseStateManager.isPostback() always returns false, and the Lifecycle

Re: MyFaces 1.2.6, JBoss PortletBridge 1.0.0CR3 Postback with LifeRay 5.2.3

2010-03-17 Thread Jakob Korherr
Hi, It has to be something like that, yes. But why are there two different forms in the HTML anyway? Regards, Jakob 2010/3/17 Sertic Mirko, Bedag mirko.ser...@bedag.ch h...@all We are running into a strange problem with MyFaces, Facelets, the JBoss PortletBridge running on LifeRay.

Re: MyFaces 1.2.6, JBoss PortletBridge 1.0.0CR3 Postback with LifeRay 5.2.3

2010-03-17 Thread Leonardo Uribe
Hi I remember this one. In apache myfaces portlet bridge there is an special configuration to allow some params to be preserved between action request and render request, so the state is not lost when it is used server side state saving. The hack there looks like this: faces-config version=1.2

[TOBAGO] tx:date in a popup

2010-03-17 Thread Fernando Augusto
Hello, I am using Tobago 1.0.24 and just ran in a weird situation... I have a form inside a popup, that uses tx:date. When I click in the calendar icon, only the modal DIV appears, behind the popup. I must click the calendar again to show it correctly. I already tried to change the modal

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Jakob Korherr
Found it! The problem is that Primefaces' PartialViewRoot keeps its own children list and the method on UIComponentBase (getFacetsAndChildren()) does not take getChildren() but _childrenList into account when creating the Iterator. This one was hard to find... I will create a JIRA issue for this

[TOBAGO] formatting fields with tx:in

2010-03-17 Thread Fernando Augusto
Hello, Is there a way to make tx:in to format the string passed (like a phone number, or anything like) while the user is typing? I tried f:convertNumber to make the currency format but it is not working. Any help on the issue? Best Regards, Fernando Augusto

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Bruno Aranda
Wonderful! I was too rusty for this one :) Thanks! Bruno On 17 March 2010 16:44, Jakob Korherr jakob.korh...@gmail.com wrote: Found it! The problem is that Primefaces' PartialViewRoot keeps its own children list and the method on UIComponentBase (getFacetsAndChildren()) does not take

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Jakob Korherr
So, I committed the fix - this works now perfectly :) :) Regards, Jakob 2010/3/17 Bruno Aranda brunoara...@gmail.com Wonderful! I was too rusty for this one :) Thanks! Bruno On 17 March 2010 16:44, Jakob Korherr jakob.korh...@gmail.com wrote: Found it! The problem is that

Re: MyFaces 1.2.6, JBoss PortletBridge 1.0.0CR3 Postback with LifeRay 5.2.3

2010-03-17 Thread Michael Freedman
I don't think this is related. FYI ... there are two types of state (potentially) being managed/preserved by the bridge: 1) action parameters saved and reexposed during the render this is off by default -- there is a portlet init parameter you set to enable this 2) request scope

Re: MyFaces 1.2.6, JBoss PortletBridge 1.0.0CR3 Postback with LifeRay 5.2.3

2010-03-17 Thread Michael Freedman
You will need to do a little digging to see if your intuition is right. Double check the html source in the browser of the page that contains the commandLink. Does is look like the reference tries to submit the form that the commandLink is contained within (via javascript)? If so, can you

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Bruno Aranda
Yes, it works beautifully! Many thanks for the quick action! :) Bruno On 17 March 2010 17:10, Jakob Korherr jakob.korh...@gmail.com wrote: So, I committed the fix - this works now perfectly :) :) Regards, Jakob 2010/3/17 Bruno Aranda brunoara...@gmail.com Wonderful! I was too rusty for

RE: [Trinidad] Old pocket IE

2010-03-17 Thread Tadashi Enomori
Hi Walter, Trinidad mobile support does not specifically support Windows CE 4.2, while 5.x and 6.x are supported. Implementations of Javascript, DOM and CSS on different versions of Windows CEs' browsers are very much different from each other, and I do not expect Trinidad will work with

Re: Primefaces p:dataTable not decoding, seems to be a MyFaces 2 problem

2010-03-17 Thread Matthias Wessendorf
cool stuff! :) On Wed, Mar 17, 2010 at 10:45 AM, Bruno Aranda brunoara...@gmail.com wrote: Yes, it works beautifully! Many thanks for the quick action! :) Bruno On 17 March 2010 17:10, Jakob Korherr jakob.korh...@gmail.com wrote: So, I committed the fix - this works now perfectly :) :)

Re: Issue with running myfaces-example-simple-1_1_9_war on websphere 6.1

2010-03-17 Thread Ashish Kulkarni
Hi This URL helped me solve this issue http://www.ibm.com/developerworks/forums/thread.jspa?messageID=14280127 http://www.ibm.com/developerworks/forums/thread.jspa?messageID=14280127 On Fri, Mar 12, 2010 at 5:20 PM, Ashish Kulkarni ashish.kulkarn...@gmail.com wrote: Hi I tried this also, i