Re: get new value of drop down inside vieworedit on onchange

2012-10-02 Thread vineet semwal
no you can't but if your use case is just to retain old value,you can retain it in a field ,you can even set the old value back or just write your own behavior that does that On Tue, Oct 2, 2012 at 2:08 PM, cosmindumy cosmind...@yahoo.com wrote: Another question, hope the last at this topic.

Re: get new value of drop down inside vieworedit on onchange

2012-10-02 Thread Sven Meier
overwrite AjaxFormComponentUpdatingBehavior#getUpdateModel() to return false, then update the model for yourself in #onUpdate(). Sven On 10/02/2012 02:47 PM, vineet semwal wrote: no you can't but if your use case is just to retain old value,you can retain it in a field ,you can even set the

Re: get new value of drop down inside vieworedit on onchange

2012-10-01 Thread cosmindumy
Thanks. It worked. But I have another question. I want the drop down inside vieworedit in some cases to be disabled. If I disable it is automatically replaced with label. I want to be replaced with label only when my condition is true. Is there any possibility? Thanks. -- View this message

Re: get new value of drop down inside vieworedit on onchange

2012-10-01 Thread vineet semwal
you can also do a css disable dropdown.add(new AttributeModifier(disabled, true)) On Mon, Oct 1, 2012 at 12:53 PM, cosmindumy cosmind...@yahoo.com wrote: Thanks. It worked. But I have another question. I want the drop down inside vieworedit in some cases to be disabled. If I disable it is

Re: get new value of drop down inside vieworedit on onchange

2012-10-01 Thread vineet semwal
you can add in constructor/onintialize()/onconfigure()/onbeforerender but not in onafterender(),the exception is self explanatory Cannot modify component hierarchy after render phase has started (page version cant change then anymore) On Mon, Oct 1, 2012 at 3:11 PM, cosmindumy

Re: get new value of drop down inside vieworedit on onchange

2012-09-28 Thread vineet semwal
try ajaxformcomponentupdatingbehvior with change event On Fri, Sep 28, 2012 at 1:15 PM, cosmindumy cosmind...@yahoo.com wrote: Hi, I want to get the new selected of a dropdown wich is inside a vieworedit component. Attached an ajax behaviour on onchange event, but cannot get the new vale.