Re: ModalWindow patch for 1.4.x

2011-04-21 Thread Martin Grigorov
Hi, I don't see attached file. Maybe .patch files are not allowed. If you create ticket then please create either tests for the new functionality or at least a demo application that uses it. Thanks! On Thu, Apr 21, 2011 at 2:27 AM, Russell Morrisey russell.morri...@missionse.com wrote:

Wicket requests

2011-04-21 Thread Gabriel Teris
Hi, I am quite new to wicket, and I am trying to better understand how the requests are handled. My problem is this: I have a landing page in my application, where I check if the session is a correct one(I have a parameter called sessionId which dictates the user's session). If the session is

Re: Wicket requests

2011-04-21 Thread Matthias Keller
Hi Yes, wicket usually handles such things internally, saving you the overhead of multiple redirects. However, if you need to modify cookie data and you must rely on getting these infos back in the following request, you need to force a round trip to the client using setRedirect(true).

Re: Migrating from 1.4.16 to 1.5 RC3 - problem when trying to avoid pages caching (not calling the constructor of the java pages)

2011-04-21 Thread Martin Grigorov
Hi, In 1.5 there is org.apache.wicket.request.http.WebResponse.disableCaching() which does the same as you did. But this is not related to your problem. When reloading the page Wicket will re-render the same page if it is stateful, i.e. there is a special parameter in the URL, e.g.

Re: Migrating from 1.4.16 to 1.5 RC3 - problem when trying to avoid pages caching (not calling the constructor of the java pages)

2011-04-21 Thread Peter Karich
Hi Martin, I'm using the same technic in 1.4 to avoid exceptions with ajax + backbutton(not sure if this is true for Ismael too): * click on an ajax linkA, and click another one. * hitting back button * clicking again ajax linkA * WicketRuntimeException: component

Re: Migrating from 1.4.16 to 1.5 RC3 - problem when trying to avoid pages caching (not calling the constructor of the java pages)

2011-04-21 Thread Martin Grigorov
Hi Peter, AFAIU Ismael wanted each request to instantiate a new page instance. That's why I suggested either use completely stateless page or use a mapper which will create a new instance every time. And this should be combined with #disableCaching() so that the browser hits the server every

terrain view in gmap2

2011-04-21 Thread lambdad...@gmail.com
Hi, How can I show the terrain view in google maps using gmap2? As of now, I can only see the hybrid and satellite views by adding the respective controls using map.addConrol(GControl.GMapTypeControl). I am using the 1.4.16 version of gmap and wicket. Thanks you in advance. Daku

RE: ModalWindow patch for 1.4.x

2011-04-21 Thread Russell Morrisey
Martin, Thanks for your reply. I created a JIRA issue with the .patch file: https://issues.apache.org/jira/browse/WICKET-3630 I will work on creating an example. Thanks, RUSSELL E. MORRISEY Programmer Analyst Professional Mission Solutions Engineering, LLC | russell.morri...@missionse.com |

Re: Migrating from 1.4.16 to 1.5 RC3 - problem when trying to avoid pages caching (not calling the constructor of the java pages)

2011-04-21 Thread Peter Karich
Hi Martin, AFAIU Ismael wanted each request to instantiate a new page instance. ah, ok. I thought he did this to avoid the same exception like me ... Recently I wrote such integration between Wicket and http://tkyk.github.com/jquery-history-plugin/ for a client. I guess nothing open

DropDownChoice sorted choice rendered Values

2011-04-21 Thread xFlasH
Hi all, I've used quite intensively the DropDownChoice component on my forms. But in some cases, I've added to some of those DropDownChoices some ChoiceRenderer. The choices Model I could pass to CTOR could easily be sorted, but in this case, not the rendered values behind this list . As an

Re: DropDownChoice sorted choice rendered Values

2011-04-21 Thread Bas Gooren
A simple solution is to create a custom model which stores the result of Locale.getAvailableLocales() in a list, and you sort that list with a custom comparator. You can then pass this model to your DropDownChoice and have the result you were looking for. Bas Op 21-4-2011 16:46, schreef

Re: terrain view in gmap2

2011-04-21 Thread lambdad...@gmail.com
As I can see in the wicket-map.js, the types are hardcoded as following: this.getMapTypeString = function(mapType){ switch (mapType) { case G_NORMAL_MAP: return 'G_NORMAL_MAP'; break; case G_SATELLITE_MAP: return 'G_SATELLITE_MAP'; break; case G_HYBRID_MAP: return 'G_HYBRID_MAP'; break; default:

Re: terrain view in gmap2

2011-04-21 Thread Michael O'Cleirigh
Hi, The best way is to checkout the existing code and add in the changes needed to allow you to access the new type (probably both Javascript and Java changes will be needed). GMap2 is in wicketstuff core here: https://github.com/wicketstuff/core

RE: ModalWindow patch for 1.4.x

2011-04-21 Thread Russell Morrisey
Martin, I have attached a quickstart to the JIRA issue which demonstrates an alternate implementation of WindowClosedBehavior, using an AjaxFormSubmitBehavior extension. RUSSELL E. MORRISEY Programmer Analyst Professional Mission Solutions Engineering, LLC |

formComponentPanel with content generated by RepeatingView

2011-04-21 Thread kamiseq
hi, Im trying to implement a simple form component that accepts List of Strings *public class AccountsPanel extends FormComponentPanelListString { ****public AccountsPanel(String id, ArrayListString accounts) { ******super(id, new Model(accounts)); buildComponents(); } }

Re: formComponentPanel with content generated by RepeatingView

2011-04-21 Thread Pedro Santos
Override convertInput is a good option. Keep in mind that at this point of the form processing (converting input), component models will not be updated yet. So you need to rely on children converted data (see FormComponet#getConvertedInput) in order to assemble the FormComponentPanel converted