Hi,

On Thu, Oct 4, 2012 at 11:07 PM, ayman <ayman.ha...@gmail.com> wrote:
> hello ,
>
>
> I'm using wicket 1.4.15 and trying to apply AjaxLazyLoadPanel on a form and
> it gives me the following error ::
>
> ERROR [353637652@qtp-888943868-3] (RequestCycle.java:1529) - close tag not
> found for tag: <form id="tasksForm19" wicket:id="tasksForm">. Component:
> [MarkupContainer [Component id = tasksForm]]

The message says that your markup seems to be invalid.
Make sure that there is a closing </form> tag and your markup is XML
well formed (just in case).

>
>
> this is the code snippet I used ::
>
>  add(new AjaxLazyLoadPanel("tasksForm")
>         {
>
>             @Override
>             public Component getLazyLoadComponent(String id)
>             {
>                 // sleep for 5 seconds to show the behavior
>                 try
>                 {
>                     Thread.sleep(9000);
>                 }
>                 catch (InterruptedException e)
>                 {
>                     throw new RuntimeException(e);
>                 }
>                 return tasksForm = new TasksForm("tasksForm");
>             }
>
>         });
>
>
>
>
>
>
>
> --
> View this message in context: 
> http://apache-wicket.1842946.n4.nabble.com/AjaxLazyLoadPanel-tp4652672.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>



-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to