David Brown wrote:
> i have a wicketized/eclipseized hibernate 1.1 tutorial that should work
> out-of-the-box albeit for mysql only. Where to upload the project? Or, I
> can put it on my blog for download?
>
I have been looking for a tutorial with hibernate and wicket so that would
be great -
We have an authentication modal window that contains a tabbed panel with
two tabs, each with their own form: one for log on and one for
registering. The user can switch between the tabs and proceed with the
one that is appropriate to them.
This works fine for most of the time however there is an i
Hi experts,
This kind of exception is logged a few times a day...
What does it mean?
Thanks
Jens Zastrow
2010-07-03 17:52:57,858 org.apache.wicket.RequestCycle there was an
error in the RequestLogger ending.
java.lang.IllegalStateException: Cannot create a session after the
response has been c
Ok, thanks,
So, if it should be ok, I wonder why after the first execution, I only
get
INFO: Channel busy - postponing...
So I can't use my component more than once...
On Jul 3, 2010, at 10:36 PM, nino martinez wael wrote:
Should be ok I guess, heres the definition of it, ..:
functi
Should be ok I guess, heres the definition of it, ..:
function wicketAjaxGet(url, successHandler, failureHandler, precondition)
2010/7/3 David Leangen
>
> I should add that in my onCloseHandler, I have this in my js:
>
>$('#popup #popup-close-link').click(function (e)
>{
>
I seem to be having a strange problem that I believe started happening
possibly after changing wicket versions or cleaning up my
dependencies.
In a nutshell, if I open a modal window with a form in it, and submit
the form via ajax, nothing happens in Google Chrome. I turned on
wicket debug and see
I should add that in my onCloseHandler, I have this in my js:
$('#popup #popup-close-link').click(function (e)
{
e.preventDefault();
$('#popup-mask, #popup-window').hide();
if( url != "" )
wicketAjaxGet(url, null, null, null);
Hello, Wicketeers,
I have a link that is supposed to call a JQuery component called
"popup".
final AjaxLink popupLink = new AjaxLink( "link.popup" )
{
@Override
public void onClick( AjaxRequestTarget target )
{
target.addComponent( popup );
final Str