Re: Save component state

2012-08-31 Thread Mike Kienenberger
How is the list returned from getCities() being used? Why is the list being serialized in a state? Maybe this below was why and posting the code may help. In the facescomponent class i use statehelper to save the state of the 2 selectonemenu's, but i have a problem: One thing to keep in mind

Re: f:selectItem escape attribute doesn't work ?

2012-08-31 Thread Mike Kienenberger
Have you tried tracing what is happening through the debugger? My guess is that there's a bug in the t:selectOneRadio renderer. It seems like it would be straightforward to determine the cause and submit a patch. You might even be able to find the problem by examining the t:selectOneRadio encoding

[Extensions-Scripting] Java code changes not getting picked up

2012-08-31 Thread Kito Mann
I'm trying to get MyFaces Extensions-Scripting running on RAD 8.0 with WAS 8.0 on Win 7 (no this isn't my choice of tools...) The goal is to use the dynamic Java class loading to avoid the hideously long WAS publish times. For the most part, everything is working fine now, and Ext-Scripting

Re: [Extensions-Scripting] Java code changes not getting picked up

2012-08-31 Thread Kito Mann
FYI, I'm using Ext-Scripting 1.02. ___ Kito D. Mann | @kito99 | Author, JSF in Action Virtua, Inc. | http://www.virtua.com | JSF/Java EE training and consulting http://www.JSFCentral.com - JavaServer Faces FAQ, news, and info | @jsfcentral +1 203-404-4848 x246 * Listen to the latest headlines in

Re: f:selectItem escape attribute doesn't work ?

2012-08-31 Thread Leonardo Uribe
Hi I checked the problem and it seems to be a typo error. Instead escape use escapeItem: t:selectOneRadio id=idRadioJSF layout=spread f:selectItem itemValue=1 itemLabel=#{controller.formatLabel('test')} escapeItem=false / /t:selectOneRadio