Re: WiQuery broken by adding component to AjaxRequestTarget

2010-12-04 Thread guydog28
For anyone following this, here is a link to the issue on the WiQuery site, where I have provided additional details and attached a sample project: http://code.google.com/p/wiquery/issues/detail?id=143 http://code.google.com/p/wiquery/issues/detail?id=143 -- View this message in context:

Re: WiQuery broken by adding component to AjaxRequestTarget

2010-12-03 Thread guydog28
More information: Looking at the wicket ajax debug, it appears that it is placing the javascript to open the dialog ahead of the $(#component).dialog(...) Basically, the plugin rendering javascript is being executed AFTER dialog.open(target), and therefore you never see it. Anything you add

Re: WiQuery broken by adding component to AjaxRequestTarget

2010-12-03 Thread guydog28
Additional supporting details: from code: @Override public void onClick(AjaxRequestTarget target) { viewReqModal.setModelObject(requirementService.find(66L)); target.addComponent(viewReqModal);