Re: replace Panel inside a Form

2007-08-27 Thread Benjamin Ernst
Thank you for your help! It works great! Benjamin 2007/8/24, Igor Vaynberg <[EMAIL PROTECTED]>: > > the problem is you replace it but do not update the reference so next time > the onclick runs it calls replacewith on an old reference. it is a common > mistake. > > EinsatzPanel newPanel = new Ein

Re: replace Panel inside a Form

2007-08-24 Thread Igor Vaynberg
the problem is you replace it but do not update the reference so next time the onclick runs it calls replacewith on an old reference. it is a common mistake. EinsatzPanel newPanel = new EinsatzPanel("einsatzPanel", ein); newPanel.setOutputMarkupId(true); einsatzPanel.replaceWith(newPanel); einsatz

Re: replace Panel inside a Form

2007-08-24 Thread Florian Sperber
Hi Benjamin, where is the Panel einsatzPanel defined? Maybe it helps defining it as a Class property? Kind regards Florian Sperber Benjamin Ernst wrote: Hi, I am trying to replace a Panel, which is inside a Form, which is inside a Page, which is inside a ModalWindow. The first time it works

replace Panel inside a Form

2007-08-24 Thread Benjamin Ernst
Hi, I am trying to replace a Panel, which is inside a Form, which is inside a Page, which is inside a ModalWindow. The first time it works fine, but when I want to replace it a second time, the Panel has no parent. Here is the code: listItem.add(new AjaxButton("pflege", MitarbeiterForm.this) {