Re: Radio group add ajax behavior

2015-04-20 Thread Chris
Ok, I have fixed it by setting the id for the list items and adapting the callback function to select by id and then by name. Chris Am 20.04.2015 um 21:53 schrieb Chris chris...@gmx.at: Hi Sven, I have put the radio group in a list of items. Basically it works so when I click on a

Re: AjaxLazyLoadPanel

2015-04-20 Thread Andrew Geery
In AjaxLazyLoadPanel#getLazyComponent(String), you should be using the id parameter, not pList, when creating the PListPanel. Andrew @Override public Component getLazyLoadComponent(String id) { return new PListPanel(pList, pModel); // change the first param from pList to

Remove 'wicket' in URL

2015-04-20 Thread Chris
Hi all, I would like to delete the context ‚wicket‘ in the URL but do not like to set another one (e.g. wicket/page?2 should become /page?2. How is this possible? Thanks, Chris - To unsubscribe, e-mail:

AjaxLazyLoadPanel

2015-04-20 Thread Chris
Hi all, I am following the example from http://www.mkyong.com/wicket/how-do-use-ajaxlazyloadpanel-in-wicket/ but get following error: Last cause: Cannot replace a component which has not been added: id='pList', component=[PListPanel [Component id = pList]]: [AjaxLazyLoadPanel [Component id =

Re: Paypal Integration in wicket

2015-04-20 Thread lucast
Hi Jayeshps, I have implemented a wicket pay with paypal button a few weeks ago. The beauty of working with wicket is that you do not have to hard-code and hide the html parameters you pass to paypal on your html. It can all be done on the AjaxButton.onSubmit(); I am assuming you're familiar

Map panel - javascript

2015-04-20 Thread Chris
Hi all, I have a map panel whose height is dynamically calculated as it should always go till the bottom of the page and above, other elements have set a dynamic height. I am calculating the height with JS (i.e. $('#map').height(Math.round($(window).height() - variable));) and call the JS

Re: Paypal Integration in wicket

2015-04-20 Thread vp143
Hi jayeshps, I have implemented PayPal IPN in the following way: In the html form you submit, you set the notifyUrl to a path i.e. www.example.com/payment/ipn In my Application class I have the following: mountPage(/payment/ipn, IPNPaymentHandler.class); Then my IPNPaymentHandler.class is as

Re: Map panel - javascript

2015-04-20 Thread Chris
PS: the map is generated using the Leaflet JS library http://leafletjs.com Am 20.04.2015 um 16:51 schrieb Chris chris...@gmx.at: Hi all, I have a map panel whose height is dynamically calculated as it should always go till the bottom of the page and above, other elements have set a

Re: Map panel - javascript

2015-04-20 Thread Chris
I found the solution: I had to call the method invalidateSize(); on the map. best regards, Chris Am 20.04.2015 um 18:02 schrieb Chris chris...@gmx.at: I have created a quickstart project: https://github.com/cat1000/Map Thanks, Chris Am 20.04.2015 um 17:12 schrieb Chris

Re: A few questions - upgrading from 1.5 to 6.19

2015-04-20 Thread Christopher Merrill
It is not even getting that far :( Breakpoint on line 603 is never hit...nor is a breakpoint on line 554, for that matter. I was starting to suspect something was up with the Dev Tools in my browser(s), until I successfully stopped at a breakpoint in some example scripts. On Fri, Apr 17, 2015

Re: Map panel - javascript

2015-04-20 Thread Chris
I have created a quickstart project: https://github.com/cat1000/Map Thanks, Chris Am 20.04.2015 um 17:12 schrieb Chris chris...@gmx.at: PS: the map is generated using the Leaflet JS library http://leafletjs.com Am 20.04.2015 um 16:51 schrieb Chris chris...@gmx.at: Hi all, I

Re: Radio group add ajax behavior

2015-04-20 Thread Chris
Hi Sven, I have put the radio group in a list of items. Basically it works so when I click on a radio button the corresponding item is called. However, when clicking the cancel button, always the radio group of the first item in the list is called. How can the callback function