DropDownChoice onchange event with AjaxEventBehaviour

2009-01-07 Thread Yazeed Isaacs
. Update a WebMarkupContainer containerB with a DataView table. 3. Update containerA to display empty, ie. No words. How could I implement step 1 during the onchange event, and then have steps 2 3 execute after the onchange event? Regards, Yazeed Isaacs - Java Developer yaz

RE: DropDownChoice onchange event with AjaxEventBehaviour

2009-01-07 Thread Yazeed Isaacs
If I implement all 3 steps in the same onchange event, then step 3 would remove the text in step 1, resulting in no text being seen on the page. Yazeed Isaacs - Java Developer yaz...@transactionjunction.co.za -Original Message- From: Martin Makundi [mailto:martin.maku

RE: DropDownChoice onchange event with AjaxEventBehaviour

2009-01-07 Thread Yazeed Isaacs
,)); target.addComponent(containerA); } } Obviously, step 1 does not belong in the onEvent method since step 3 replace the text with , however step 1 needs to happen during the onchange event. Regards, Yazeed Isaacs - Java Developer yaz...@transactionjunction.co.za -Original Message- From: Ernesto

AjaxSelfUpdatingTimerBehavior not updating

2008-11-25 Thread Yazeed Isaacs
); } The AjaxSelfUpdatingTimerBehavior is added in the MyTabPanel constructor as: // timed updater add(new AjaxSelfUpdatingTimerBehavior(Duration.seconds(10))); What am I doing wrong? Yazeed Isaacs - Java Developer [EMAIL PROTECTED

RE: AjaxSelfUpdatingTimerBehavior not updating

2008-11-25 Thread Yazeed Isaacs
Thank you James, onBeforeRender() worked for me, in which all I did was replaced components. Really simple solution. Regards, Yazeed Isaacs - Java Developer [EMAIL PROTECTED] -Original Message- From: James Carman [mailto:[EMAIL PROTECTED] Sent: 25 November 2008 03:19 PM To: users

RE: DateTimeField - changing the format of the date

2008-11-20 Thread Yazeed Isaacs
,dd/MM/); } }; Regards, Yazeed Isaacs -Original Message- From: Yazeed Isaacs [mailto:[EMAIL PROTECTED] Sent: 19 November 2008 10:47 AM To: users@wicket.apache.org Subject: DateTimeField - changing the format of the date Hi I would like to change the format of the default

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-12 Thread Yazeed Isaacs
that the LazyLoadComponent with id content is the problem, but I cannot seem to solve this one. Is there any other way that I may use the AjaxTabbedPanel or AjaxFallbackDefaultDataTable and have them lazyloaded? Oh yes, did I mention that WICKET is AWESOME !!! Yazeed Isaacs - Java Developer [EMAIL PROTECTED

RE: WebMarkupContainer with AjaxTabbedPanel - duplicating panel data

2008-11-11 Thread Yazeed Isaacs
, that is invalid html and causes browsers to do funny things. -igor On Mon, Nov 10, 2008 at 4:12 AM, Yazeed Isaacs [EMAIL PROTECTED] wrote: Hi I have a WebMarkupContainer with a AjaxTabbedPanel. When I click on the tab it duplicates the panel data. What am I doing wrong? Here is my code

RE: WebMarkupContainer with AjaxTabbedPanel - duplicating panel data

2008-11-11 Thread Yazeed Isaacs
. LazyLoadPanel.getLazyLoadComponent() returns the AjaxFallbackDefaultDataTable. Refer to AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException Regards, Yazeed Isaacs - Java Developer [EMAIL PROTECTED] -Original Message- From: Yazeed Isaacs

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-11 Thread Yazeed Isaacs
, but when I sort a column or navigate to the next page, the IllegalStateException is thrown and the error message is: Ajax render cannot be called on component that has setRenderBodyOnly enabled - Component id: content. lazyloadpanel:content.AjaxFallbackDefaultDataTable Please help. Yazeed Isaacs

WebMarkupContainer with AjaxTabbedPanel - duplicating panel data

2008-11-10 Thread Yazeed Isaacs
)); target.addComponent(terminalsContainer); } } When I click on the Details tab then the data returned by the panel TerminalMonitorDetailsTabPanel is duplicated below each time. Yazeed Isaacs - Java Developer [EMAIL PROTECTED]

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-10 Thread Yazeed Isaacs
= za.co.transactionjunction.transpector.pages.TransactionQueryPage, path = 8:transactionQueryForm:transactions:content.AjaxFallbackDefaultDataTable Any ideas? Yazeed Isaacs - Java Developer [EMAIL PROTECTED] -Original Message- From: Ernesto Reinaldo Barreiro [mailto:[EMAIL PROTECTED] Sent: 06 October 2008 10:01

RE: Double clickable rows in AjaxFallbackDefaultDataTable

2008-10-23 Thread Yazeed Isaacs
target.appendJavascript(alert('ondblclick occurred');); } }; rowItem.add(onDoubleClickBehaviour); return rowItem; } Regards, Yazeed Isaacs -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: 22

Double clickable rows in AjaxFallbackDefaultDataTable

2008-10-22 Thread Yazeed Isaacs
Hi Does anyone know how to implement something that could do this. Please point me in the right direction. Regards, Yazeed Isaacs - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Yazeed Isaacs
. Let me know what you think. Regards, Yazeed Isaacs -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: 06 October 2008 09:31 AM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws

AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-03 Thread Yazeed Isaacs
:transactionQueryForm:transactions:content.AjaxFallbackDefaultDataTable Where transactions is the AjaxLazyLoadPanel. Am I missing something? Please help. Regards, Yazeed Isaacs

RE: Images not displaying

2008-09-29 Thread Yazeed Isaacs
Sent: 26 September 2008 05:16 PM To: users@wicket.apache.org Subject: Re: Images not displaying Try surrounding your img tag with wicket:link tags. On Fri, Sep 26, 2008 at 11:04 AM, Yazeed Isaacs [EMAIL PROTECTED] wrote: Hi I am trying to display a logo but nothing is displayed. Eg: img src

RE: Images not displaying

2008-09-29 Thread Yazeed Isaacs
: 29 September 2008 10:01 AM To: users@wicket.apache.org Subject: Re: Images not displaying is your filter's mapping properly ends in a /* ? -igor On Sun, Sep 28, 2008 at 11:52 PM, Yazeed Isaacs [EMAIL PROTECTED] wrote: Hi James I have tried placing the img tag between wicket:link tags but still

RE: Images not displaying

2008-09-29 Thread Yazeed Isaacs
Hi Igor You mean filter mappings in web.xml I did not have any filter mappings, so I have added them and everything is now working fine. Thanks for the help Igor. Regards, Yazeed -Original Message- From: Yazeed Isaacs Sent: 29 September 2008 11:16 AM To: users@wicket.apache.org