Re: [Follow up] Ajax link doesn't call event

2008-09-05 Thread only4you
Lack of "super" section cause that kind of a problem. Look at example: AjaxEditableLabel label = new AjaxEditableLabel(componentId, new PropertyModel(dtoUser, "loginName")){ @Override protected void onEdit(AjaxRequestTar

Re: [Follow up] Ajax link doesn't call event

2008-07-02 Thread Timo Rantalaiho
On Wed, 02 Jul 2008, ezegb wrote: > Hi Timo, yes I'm from Argentina, DNI's the Documento Nacional de Identidad :p I thought it rang a bell :) > Regarding the issue, we did nail it down todays, turns out Ajax was > rejecting the request because of empty required textfields elsewhere in the > form.

Re: [Follow up] Ajax link doesn't call event

2008-07-02 Thread ezegb
Hi Timo, yes I'm from Argentina, DNI's the Documento Nacional de Identidad :p Regarding the issue, we did nail it down todays, turns out Ajax was rejecting the request because of empty required textfields elsewhere in the form. Now, the following issue is we couldn't quite catch the validation so

Re: [Follow up] Ajax link doesn't call event

2008-07-02 Thread Timo Rantalaiho
On Wed, 02 Jul 2008, ezegb wrote: > I'd like to stress that this same code is working elsewhere, though there's > no lonely textfields beneath in that form, but there are other similar > containers. Sorry but it's very hard to get a grasp of the code from the email -- at least I couldn't see anyt

Re: [Follow up] Ajax link doesn't call event

2008-07-02 Thread ezegb
Hi, thanks for your reply. As I said, the troublesome component seems to be a container which is composed of the following: ListView author = new CompoundListView("author") { private static f

Re: [Follow up] Ajax link doesn't call event

2008-07-01 Thread Timo Rantalaiho
On Tue, 01 Jul 2008, ezegb wrote: > I ended up commenting loads of code and it turns out my Ajax link will quit > responding if it has something else after itself in the form. I got rid of > all the textfields that followed, and I got it to work. The troublesome > component is actually the ajax lin

Re: [Follow up] Ajax link doesn't call event

2008-07-01 Thread ezegb
I ended up commenting loads of code and it turns out my Ajax link will quit responding if it has something else after itself in the form. I got rid of all the textfields that followed, and I got it to work. The troublesome component is actually the ajax link, plus a textfield to input data, plus a

Ajax link doesn't call event

2008-07-01 Thread ezegb
Hi, the situation is as follows: I have a form embedded in an abstract panel. The form has an autocompletetextfield and an AjaxSubmitLink which acts on the data in the textfield. The panel, in turn, extends several other panels which are in the end the ones that get instantiated. The very code f