Re: [Wicket-user] Editable Labels : How to

2006-03-18 Thread Ayodeji Aladejebi
thanks igor :) On 3/17/06, Ali Zaid <[EMAIL PROTECTED]> wrote: excel like datagrid ;)On 3/17/06, Johan Compagner <[EMAIL PROTECTED] > wrote:> come on guys.. request more features you see that igor will implement them> all right away!>> johan On 3/17/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote

Re: [Wicket-user] Editable Labels : How to

2006-03-17 Thread Ali Zaid
excel like datagrid ;) On 3/17/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > come on guys.. request more features you see that igor will implement them > all right away! > > johan > > > > On 3/17/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote: > > > > i was taking a short break from work, and tho

Re: [Wicket-user] Editable Labels : How to

2006-03-17 Thread Johan Compagner
come on guys.. request more features you see that igor will implement them all right away!johanOn 3/17/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote:i was taking a short break from work, and thought what the hell, why not write one? so i did, only took me half an hour or so. i just checked it into e

Re: [Wicket-user] Editable Labels : How to

2006-03-17 Thread Igor Vaynberg
i was taking a short break from work, and thought what the hell, why not write one?so i did, only took me half an hour or so. i just checked it into extensions. its not very flexible/powerful yet, but it works well. look in wicket-examples/ajax for an example of it in all its glory. its called Ajax

Re: [Wicket-user] Editable Labels : How to

2006-03-17 Thread Igor Vaynberg
it should be pretty easy to do.you create a panel with both the label and the textfield. hide the textfield initially. attach an ajax onevent behavior to the label and in the event handler hide the label, show the textfield and update the panel via ajax. same thing for textfield, add an onblur beha

[Wicket-user] Editable Labels : How to

2006-03-17 Thread Ayodeji Aladejebi
I have been tryin to use wicket Ajax support to workout a Label that onDoubleClick, it will transform into a textfield so that onBlur, it will feed the edited value back to the model...   any idea on how i can get this done or any anticipated support out-of-the-box for this kind of function? i thi