Re: Ajax behaviour for multiple elements

2013-10-17 Thread Joachim Schrod
On 10/16/13 11:37, frasese wrote: there is a way to update the status of multiple elements with a single ajax behaviour? For example, if we have two different DropDownChoice elements, each one with its own AjaxFormComponentUpdatingBehavior... when the onchange event is triggered, one has

Re: How to get URLs for images with in a WebApp

2013-10-17 Thread Abigail
HI THERE I usually do the image issues using an image program.You can also take a look at this .NET Image SDK which includes several library controls to perform complete image processing tasks, especially for downloading image from url

Re: Ajax behaviour for multiple elements

2013-10-17 Thread frasese
Thanks for both answers!!!. I'm going to try. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-behaviour-for-multiple-elements-tp4661835p4661847.html Sent from the Users forum mailing list archive at Nabble.com.

gmap3 Geocoder and list of locations

2013-10-17 Thread Dirk Forchel
Hi, I'm a newbie to all the Google Maps API stuff and I've noticed that a wicket-stuff project (gmap3) could help me to show a Google Map with a list of shops for a known business company. I found an example on this french page http://www.bebecash.com/Magasins/ which is similar to our tasks. And

Shared data between sessions on forms, wanted behaviour?

2013-10-17 Thread Thomas Krieger
Hi, i need some help to understand an wicket behaviour after i updated to 6.6 from 6.4. We have a search form in a panel in our Shop System which contains an attribute for the form data: public class SearchForm extends FormSearchParameter { ... private SearchParameter param; ... In

Re: gmap3 Geocoder and list of locations

2013-10-17 Thread Dirk Forchel
Hi Martin, thanks for your answer. Actually, all of our stores are persistent in our database. These are about 300 and I think it is a good idea to pre-compute all the coordinates (GLatLng) with a cronjob. Afterwards I would like to show only a part of these stores which fit to a certain specific

Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
I use a DataView and the data comes from the ListProvider which I created a Sortable ListProvider. I provided the Sortable ListProvider with a ListSubscription which I get through a hibernate database call. -- View this message in context:

Re: gmap3 Geocoder and list of locations

2013-10-17 Thread Martin Grigorov
On Thu, Oct 17, 2013 at 2:14 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Hi Martin, thanks for your answer. Actually, all of our stores are persistent in our database. These are about 300 and I think it is a good idea to pre-compute all the coordinates (GLatLng) with a cronjob. Afterwards

Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread Sven Meier
So are you passing ListSubscription to your provider's constructor, or are you loading a fresh list for #size() and #iterator() in each request? Sven On 10/15/2013 04:20 PM, dhongyt wrote: I use a DataView and the data comes from the ListProvider which I created a Sortable ListProvider. I

Re: Shared data between sessions on forms, wanted behaviour?

2013-10-17 Thread Martin Grigorov
Hi, Sharing of data between sessions is not a feature of Wicket. If you are able to reproduce the problem in a quickstart application with Wicket 6.11 then please attach it to a ticket in JIRA. On Thu, Oct 17, 2013 at 1:11 PM, Thomas Krieger tho...@trend-soft.dewrote: Hi, i need some help to

Re: gmap3 Geocoder and list of locations

2013-10-17 Thread Dirk Forchel
OK, sounds reasonable. Is there a way to return only these stores with their coordinates (GLatLng) which fit into a special bound. I mean, the user types in a region or postcode and wants to so only thouse stores which fit into this bound. How could I perform this? Thanks in advance. -- View

Re: gmap3 Geocoder and list of locations

2013-10-17 Thread Martin Grigorov
I think the best would be to render markers for all stores and center the map according to the zipcode and zoom it appropriately. This way the user will see only the stores in the visible area of the map. But if (s)he zoom out the map then (s)he will see more stores and choose any of them.

RE: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
Thanks Paul for your guidance. After reading your link and other links on the web to understand stateful vs stateless, it has lead me to other questions: Currently my application is stateful. 1. Since I am authenticating my users, does it need to be stateful because of authentication? I have a

Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
I am passing the list into the provider. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Browser-Page-Refresh-Not-Really-Refreshing-tp4661826p4661858.html Sent from the Users forum mailing list archive at Nabble.com.

Loading content of IFrames only when displayed

2013-10-17 Thread Christian Schröter
Hello, I'm using the InlineFrame class to display an IFrame. Now the IFrame is added in a dialog prompt, which is not visible by default. The user has to click a certain link to see the IFrame in the dialog prompt. Unfortunately the browser loads the URL defined in the source attribute, no

wicket- jqueryui Kendo DateTimePicker timePattern

2013-10-17 Thread Selom
Hi, In *com.googlecode.wicket.jquery.ui.kendo.datetime.DateTimePicker* How Can I change the Time pattern ?. Instead of having the list 00:00 00:30 1:00 23:30 I would like to have only my own *9:00 9:45 10:30 11:15* for exemple. Thank for your help. -- View this message in

Re: wicket- jqueryui Kendo DateTimePicker timePattern

2013-10-17 Thread Sebastien
Hi, According to the Kendo UI's doc [1], you need to set the following options: Options options = new Options(); options.set(interval, 45); options.set(min, new Date(2000, 0, 1, 9, 0, 0)); //9:00:00, the date part is ignored final TimePicker timepicker = new TimePicker(timepicker, model,

Re: Shared data between sessions on forms, wanted behaviour?

2013-10-17 Thread Thomas Krieger
Thanks for your advice i will try to get a small reproducable app and post it. with a bug report Greetings Thomas -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Shared-data-between-sessions-on-forms-wanted-behaviour-tp4661848p4661859.html Sent from the Users

Re: unwanted DefaultPageManagerProvider

2013-10-17 Thread uwe schaefer
On 14.10.2013 21:41, uwe schaefer wrote: could it also be a racecondition with clustering and public void sessionUnbound(final String sessionId) being called before init() returns? after further investigation it is pretty clear, that the above race condition happens (at least on tomcat6)