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]]
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: [email protected]
For additional commands, e-mail: [email protected]