Re: t:selectManyPicklist does not assign POST data to bean property if nested in h:dataTable or ui:repeat

2012-04-12 Thread Max Goltzsche
Hi, thanks a lot for checking that. My problem was caused by a JPA entity's lazy loading (not loaded) property. The simple example in my last mail doesn't work anyway (also tried with valueType attribute) but it is a case that really never occures. I am working on a generator so that picklists cou

Re: t:selectManyPicklist does not assign POST data to bean property if nested in h:dataTable or ui:repeat

2012-04-12 Thread Leonardo Uribe
Hi I have checked the component and it is ok. The problem described happens because ValueExpression.getValueType() returns Object.class when an structure like: private List> multipleValues = new LinkedList>(); is used. You could try setting valueType attribute to java.util.List in this way:

Re: t:selectManyPicklist does not assign POST data to bean property if nested in h:dataTable or ui:repeat

2012-04-12 Thread Max Goltzsche
Hello again, Replacing myfaces 2.1.2 api and impl with corresponding myfaces 2.1.7 jars in Tomee 1.0.0 beta 2 does also not solve the problem. Please help! regards, Max 2012/4/11 Max Goltzsche > Hello dear myfaces users, > > I've already described my problem in my last mail but I forgot to tel

[RELEASE] Apache MyFaces Ext-Scripting 1.0.2 and 1.0.3

2012-04-12 Thread Werner Punz
The Apache MyFaces team is pleased to announce the release of MyFaces Ext-Scripting 1.0.2 and 1.0.3. Apache MyFaces Ext-Scripting is a dynamic reloading Extension for Apache MyFaces, which adds support for various scripting languages as well as reloading of Java and various webartifacts. Note

Re: [EXTVAL] @Column.lenght -> h:inputText

2012-04-12 Thread Thomas Andraschko
Hi, ok cool - i will try it! Thanks! 2012/4/12 Gerhard Petracek > hi thomas, > > that isn't supported by default (intentionally). > > however, you can provide a custom ComponentInitializer. > (implement the interface or extend HtmlCoreComponentsComponentInitializer > and override #configureMax

Re: [EXTVAL] @Column.lenght -> h:inputText

2012-04-12 Thread Gerhard Petracek
hi thomas, that isn't supported by default (intentionally). however, you can provide a custom ComponentInitializer. (implement the interface or extend HtmlCoreComponentsComponentInitializer and override #configureMaxLengthAttribute) -> register it via an extval startup listener. regards, gerhard

Re: [Tobago] Is migration to Tobago 1.5.* recommended?

2012-04-12 Thread d . o . m . e
Dear all, I will repeat my question: Would you recommend migrating from Tobago 1.0.* to Tobago 1.5.* at this time (1.5.4)? Furthermore, how would you suggest to proceed: First migrate to JSF 1.2, then to Tobago 1.5 (if that is possible), or migrate both at the same time? Thanks for your help,

Re: [EXTVAL] @Column.lenght -> h:inputText

2012-04-12 Thread Thomas Andraschko
Hi Gerhard, yep i could but the value depends on the current logged in user/user groups. So it can't use a static value -> ValueBinding on maxlenght attribute would be an easy solution. Ok, so there is no possiblity to disable this behavior? Why ExtVal does override the default attributes? IMO th

Re: [EXTVAL] @Column.lenght -> h:inputText

2012-04-12 Thread Gerhard Petracek
hi thomas, you can use Column#length with the correct value or a different property for your value-binding (without @Column) . regards, gerhard http://www.irian.at Your JSF/JavaEE powerhouse - JavaEE Consulting, Development and Courses in English and German Professional Support for Apache MyFa

[EXTVAL] @Column.lenght -> h:inputText

2012-04-12 Thread Thomas Andraschko
Hi, we have a value binding on an h:inputText. The binded variable has @Column and the default value of length is 255. I try to overwrite this via "maxlength" attribute on the h:inputText but the rendered maxlenght is 255. How can disable this behavior for a single input field? Best regards, Tho