Re: Wicket Dynamic Navigation

2010-05-24 Thread vp143
I forgot to mention that I require the HTML markup to be like the following: ul liCategory 1/li liCategory 2/li li ul li # Category 2 - Sub category 1 /li li # Category 2 - Sub category 2 /li /ul /li /ul -- View this message in context:

RE: Wicket Dynamic Navigation

2010-05-24 Thread vp143
Unfortunately my knowledge of German is non-existent. Thanks for your reply though. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Dynamic-Navigation-tp2228587p2228741.html Sent from the Wicket - User mailing list archive at Nabble.com.

Prepopulate time fields in DateTimeField component

2010-09-09 Thread vp143
Hi all, I have a Form with the default model being a CompoundPropertyModel. I have added the DateTimeField component to the form. I wish to prepopulate the time fields but not the date. I have tried a few different things but all have their various issues. Anyone have any ideas? Many thanks in

Re: Prepopulate time fields in DateTimeField component

2010-09-09 Thread vp143
I tried that previously but then the field becomes NULL within the POJO I think this is what you mean: If i have: setDefaultModel(new CompoundPropertyModel(Item)); where Item object contains checkinDate field I create the component: DateTimeField checkinDateField = new

Re: Prepopulate time fields in DateTimeField component

2010-09-10 Thread vp143
Is there any way to reapply the relationship checkinDate had with the CompoundPropertyModel? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Prepopulate-time-fields-in-DateTimeField-component-tp2533175p2534425.html Sent from the Wicket - User mailing list archive at

Re: Cannot get current page from AjaxPagingNavigator

2010-11-09 Thread vp143
Thank you both for your responses- I totally forgot about it being dynamic. However, I have tried both code snippets above but still no luck. I printed the current page within the load() method which prints 0 only on first load. No message is printed when the page numbers from

Re: Cannot get current page from AjaxPagingNavigator

2010-11-10 Thread vp143
I got it working with the following code- thanks Pedro and JC final Label currentPage = new Label(currentPage, new Model()); currentPage.setOutputMarkupId(true); add(currentPage); final AjaxPagingNavigator pagination = new AjaxPagingNavigator(navigator, dataList)

Re: Configure http and https with apache and jboss

2011-06-29 Thread vp143
I have already tested html files containing http links and https links. I can navigate around these files including browser indicators saying the ssl cert is fine. For this I had to add DocumentRoot /var/www. The http part of the wicket website is working fine. I would like to try Jboss without

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
The MyHttpsRequestCycleProcessor was just used to debug i.e. no changes of code. The same problem is there without my custom class. You say the httpsPort is being ignored. How can I check this? What should be outputted if I print the url as nothing is being outputted? -- View this message in

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
The port being passed was null. The code in HttpsRequestCycleProcessor that sets the port is: Integer port = null; if (protocol == Protocol.HTTP) { if (processor.getConfig().getHttpPort() != 80) { port =

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
One additional point... if I take out protected IRequestCycleProcessor newRequestCycleProcessor() { HttpsConfig config = new HttpsConfig(80, 443); return new HttpsRequestCycleProcessor(config); } and I navigate manually to an https link i.e. https://myserver.com/login. Everything

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
/myapp is only used within the apache httpd.conf and not accessing it through the browser. The pages are accessed like http://myserver.com/ and hopefully https://myserver.com/login A debug output from getUrl shows the link obtained is https://myserver.com/myapp/login (I think from

Re: Configure http and https with apache and jboss

2011-07-01 Thread vp143
I am delving into the SwitchProtocolRequestTarget code a little to see if it gives me any answers. When the requireProtocol is called the protocol is https but request.getScheme() returns http. Why would this be? -- View this message in context:

Re: Configure http and https with apache and jboss

2011-07-01 Thread vp143
I have seen posts talking about this connector in Tomcat/Jboss Connector protocol=HTTP/1.1 SSLEnabled=true port=8443 address=${jboss.bind.address} scheme=https secure=true clientAuth=false keystoreFile=${jboss.server.home.dir}/conf/chap8.keystore

Re: Configure http and https with apache and jboss

2011-07-06 Thread vp143
All, I think I have this resolved, at least no problems so far. There were many things that I needed to add: 1) Within server.xml, I added proxyName and proxyPort to the 8080 connector. I found this in the Tomcat documentation When you are running behind a proxy server (or a web server that is

Re: Two YUI DatePickers - use first date as basis for second date

2012-05-11 Thread vp143
Thanks for your answer. I was hoping that there might something in Wicket. I did look at the YUI docs but so far cant find exactly what I need to do. It seems like I need to add a listener which calls a JS method which I think I have understood but cant work out what is required to change the

Re: CSS load order in 6.x

2012-12-28 Thread vp143
Many thanks for your help. This is what I have done: public class YUICalendarCssResourceReference extends CssResourceReference { private static final long serialVersionUID = 1L; public YUICalendarCssResourceReference() {

Re: CSS load order in 6.x

2012-12-28 Thread vp143
The HTML source appears correctly to me: link rel=stylesheet type=text/css href=../../../../wicket/resource/web.pages.BasePage/::/::/::/css/app-ver-1356687988000.css / link rel=stylesheet type=text/css

Re: [Wicketstuff] Google Maps 3 component

2013-01-11 Thread vp143
Hi Sylvain, I too am wondering how to pass a component into GInfoWindow rather than a string? Did you find a answer this this. Or does anyone know how to convert a component to an html string? Regards Vishal -- View this message in context:

Re: CSS load order in 6.x

2013-01-11 Thread vp143
Just to let everyone know, I ended up resolving this issue but changing to http://www.7thweb.net/wicket-jquery-ui/ DatePicker. I prefer this DatePicker (so far) for other reasons too. -- View this message in context:

Re: [Wicketstuff] Google Maps 3 component

2013-01-11 Thread vp143
Martin Grigorov-4 wrote Check the panel example at: http://www.wicket-library.com/wicket-examples-6.0.x/mailtemplate/lt;http://www.wicket-library.com/wicket-examples-6.0.x/mailtemplate/?0gt; Many thanks Martin, that got me the string I required. FYI if a panel html has something like this:

Re: Gmap3 Geocoding shows Status 610

2013-03-21 Thread vp143
Thank you very much for this Dieter and Martin! One other question, when will wicketstuff gmap3 be packaged up? I normally pick up the jar from maven central. Thanks Vishal -- View this message in context:

Re: Gmap3 Geocoding shows Status 610

2013-04-03 Thread vp143
The new code works for me!! Thanks again! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Gmap3-Geocoding-shows-Status-610-tp4657298p4657703.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Gmap3 NullPointerException

2013-08-08 Thread vp143
Hi Martin, I am not sure on the resolution to this. I do not know why overlay.overlayId would be null? Regards Vishal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Gmap3-NullPointerException-tp4660777p4660781.html Sent from the Users forum mailing list archive

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
Ernesto Reinaldo Barreiro-4 wrote Hi, I remember Igor posted and example of a non-blocking lazy load panel (long time ago). As far as I remember all it did was: 1-Check is results where ready is so render the panel 2-If not then schedule a timer to poll the panel again Regards -

Re: AjaxLazyLoadPanel loading asynchronously

2014-01-30 Thread vp143
Peter Henderson wrote ​You could try native web sockets​. Get your worker threads to broadcast a message to the page, it ends up being very similar to an ajax update. Peter Henderson Thanks for the tip Peter, but as I understand it, Web Sockets is not production ready so I would prefer to

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
Martin Grigorov-4 wrote Hi, Create a panel that has a child an image (the busy indicator). Add a timer behavior to this panel and check whether the slow operation is done and replace the image with another component that renders the new data: public void onTimer(AjaxRequestTarget target)

Re: AjaxLazyLoadPanel loading asynchronously

2014-02-03 Thread vp143
I cannot get future here (https://gist.github.com/jonnywray/636875#file-futureupdatebehavior-java-L31) to have a value. I do not understand when/how it gets deserialized? Martin Grigorov-4 wrote Because it is transient:

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread vp143
This is what I am doing: final Panel emptyPanel = new EmptyPanel(additionalInfo); emptyPanel.setOutputMarkupId(true); item.add(emptyPanel); IndicatingAjaxFallbackLink additionalInfoLink = new IndicatingAjaxFallbackLink(additionalInfoLink) { @Override

Re: replaceWith method in Panel not working with AjaxLazyLoadPanel

2014-02-06 Thread vp143
That was it! Thank you -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/replaceWith-method-in-Panel-not-working-with-AjaxLazyLoadPanel-tp4664232p4664257.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Ajax Form Submit via jquery plugin / javascript

2014-06-13 Thread vp143
Paul Bors wrote http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/ajax/form/AjaxFormSubmitBehavior.html Ajax event behavior that submits a form via ajax when the event it is attached to, is invoked.” You’re attaching the submit event so who fires that? You are right, I

Re: Ajax Form Submit via jquery plugin / javascript

2014-07-07 Thread vp143
I wasnt able to get anything working... I tried adding wicket:id via jquery to the plugin button but wicket did not recognise it. However, I had been using wicket 6.7.0 up until then. I see that AjaxWizardButtonBar within the Wizard functionality has been added in a latter wicket version which I

Re: Model data lost when calling target.add before onSubmit

2014-07-07 Thread vp143
Many thanks! I solved my original issue using AjaxWizardButtonBar which I was not aware of as I was using an older version of Wicket. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Model-data-lost-when-calling-target-add-before-onSubmit-tp4666385p4666458.html Sent

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread vp143
Martin Grigorov-4 wrote Upgrade Wicket version by version to identify in which version the behavior has changed. I found the wicket version to be 6.13+. I then removed virtually all code in the page except the AjaxLaxyLoadPanel but was still reloading. I then recalled I have used a customer

Re: Page reloads continuously- AjaxLazyLoadPanel ?

2014-07-18 Thread vp143
Sorry, I missed the that post. Works fine so far. Many thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Page-reloads-continuously-AjaxLazyLoadPanel-tp471p479.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Foundation integrated in wicket

2014-07-30 Thread vp143
I have implemented Foundation from Zurb with Wicket, currently using version 3 though. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Foundation-integrated-in-wicket-tp4666792p4666796.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Foundation integrated in wicket

2014-08-07 Thread vp143
I am not sure I understand what you are after... I do not have anything on GitHub. I used SASS to install and compile my sass files and put my js files in my webapp directory. Let me know if you have any specific questions. Regards Vishal -- View this message in context:

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: rememberMe not working in 6.19

2015-04-28 Thread vp143
Great! So I assume that will be available in 6.20? Is there an ETA for that? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/rememberMe-not-working-in-6-19-tp4670527p4670533.html Sent from the Users forum mailing list archive at Nabble.com.

Re: wicketstuff-gmap3 marker label

2018-08-16 Thread vp143
Hi Martin, I will try and do this when work permits. Thanks for confirming -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: Set Double to more than 3 digits in AjaxEditableLabel

2018-08-17 Thread vp143
Thanks Martin, that worked great! Just for completeness, I needed to make a slight modification as I did not find super.createNumberFormat DoubleConverter dc = new DoubleConverter() { @Override protected NumberFormat newNumberFormat(final Locale locale) {