Hello, Wicketeers,

I have a link that is supposed to call a JQuery component called "popup".

  final AjaxLink<Void> popupLink = new AjaxLink<Void>( "link.popup" )
  {
      @Override
      public void onClick( AjaxRequestTarget target )
      {
          target.addComponent( popup );
          final StringBuilder s = new StringBuilder();
          s.append( "$.fn.popup({" )
.append( "url: \"" ).append( onCloseBehavior.getCallbackUrl() ).append( "\"" )
          .append( "});" );
          target.appendJavascript( s.toString() );
      }
  };

Works just fine the first time, but each subsequent call, I can see the following message in the Ajax Debug Window:

INFO: Channel busy - postponing...


Other than the link above, nothing else is going on!

Do I need to somehow close the channel, or something?


Thanks!
=David


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to