gmap2 opera slow

2010-03-17 Thread Gatos
Hello, I have noticed that in opera gmap2 is more slow that in FF. I have checked maps.google.com and it seems to be faster. Does any1 know what could be the cause of the problem? Thank you

DateField problem

2010-02-19 Thread Gatos
Hello, I have a strange problem if I enter to a date field date, from example 2.3.2110 then it will be converted to 2.3.10. Does anyone know how to solve the problem? Thank you

Model for ResourceLink

2010-02-16 Thread Gatos
Hi, I need to update ResourceLink when pagination is changed. How is it possible to pass model to a ResourceLink? I'm using wicket 1.3.6, but I think it should be also the same for other releases. Thank you

document onkeypress onkeydown

2010-02-04 Thread Gatos
Hello, How is it possible to add event behavior for the document? I tried this one, but it didn't work: add(new AjaxEventBehavior(onkeypress){ @Override protected void onEvent(final AjaxRequestTarget target) { LOG.debug(keypress); } });

ResourceLink and LoadableDetachableModel

2009-11-30 Thread Gatos
Hello, I'm using paging on my page and I need to reload parameter list of a ResourceLink after the page changed. Code: ResourceLink csvLink = new ResourceLink(csvLink, new ResourceReference(CsvResource.ID), params); There is no model for that object, how is it possible csvLink parameters of

TabbedPanel no IModel?

2009-11-27 Thread Gatos
Hello, I need to use LoadableDetachableModel to retrieve list from the database when locale has been changed. I haven't found a costructor that took IModel as a parameter in the TabbedPanel component. How is it possible to reload the list without model? Thank you in advance

Wicket based open source projects

2009-11-27 Thread Gatos
Hello, Is there any wicket based Open Source projects? Thank you

Localize a string using custom locale

2009-11-27 Thread Gatos
Hello, For example I need to localize a string to defferent languages. How is it possible to localize using a custom locale? I found that a method in Localizer class, but it's deprecated: public String getString(final String key, final Component component, final IModel model, final Locale

Re: Wicket based open source projects

2009-11-27 Thread Gatos
It might be a good idea to create a page in with open source projects, like Hippo CMS. What do you think? On Fri, Nov 27, 2009 at 4:36 PM, Peter Ertl pe...@gmx.org wrote: artifactory Am 27.11.2009 um 15:15 schrieb Andrea Aime: Gatos ha scritto: Hello, Is there any wicket based Open

Re: Wicket based open source projects

2009-11-27 Thread Gatos
...@gmail.comwrote: Which difference with the page Martijn gave? On Fri, Nov 27, 2009 at 4:08 PM, Peter Ertl pe...@gmx.org wrote: +1 Am 27.11.2009 um 16:03 schrieb Gatos: It might be a good idea to create a page in with open source projects, like Hippo CMS. What do you think

Re: Wicket based open source projects

2009-11-27 Thread Gatos
example sites, see: http://wicket.apache.org/blogs.html http://wicketstuff.org/wicket13/compref/ http://www.wicket-library.com/wicket-examples/ajax/ Regards, Peter 2009-11-27 16:23 keltezéssel, Gatos írta: My problem is that I haven't found a good example

BookmarkablePageLink with https

2009-11-25 Thread Gatos
Hello, How is it possible to generate BookmarkablePageLink with secured protocol https? Thank you

wicket default locale

2009-10-05 Thread Gatos
Hello, How to set a default locale for the application? It works for me, but I guess it should be more common: @Override public Session newSession(Request request, Response response) { Session session = super.newSession(request, response); session.setLocale(new Locale(et)); return

image inside wicket:link tag

2009-10-02 Thread Gatos
Hello, wicket:link a href=ApplicationPage.htmlimg src=img/id.gif / ID/a /wicket:link When I click the link then image is shown. For some reason src=img/id.gif interpretates as a link. How to solve the problem? Wicket 1.4.1 Thank you

Re: image inside wicket:link tag

2009-10-02 Thread Gatos
I see it's a new feature in 1.4.x. Maybe I could fix it? :-/ On Fri, Oct 2, 2009 at 9:44 AM, Gatos ega...@gmail.com wrote: Hello, wicket:link a href=ApplicationPage.htmlimg src=img/id.gif / ID/a /wicket:link When I click the link then image is shown. For some reason src=img/id.gif

Choose one

2009-08-27 Thread Gatos
After I choose something in DropDownChoice then 'Choose one' item is removed from the list. If I will try to use setNullValid(true) then 'Choose one' string is replaced with '' (emptry string). How is it possible to display 'Choose one' if another item has been selected?

Re: Choose one

2009-08-27 Thread Gatos
Is it possible to reuse existing translation - I like 'Choose one'? If my app has 32 languages, then I should create 32 records in each file? On Thu, Aug 27, 2009 at 3:58 PM, Dipu dipu@googlemail.com wrote: add this in your .properties file yourForm.yourDropDownId.nullValid = Choose One

Re: Choose one

2009-08-27 Thread Gatos
such as DropDownChoice and RadioChoice Matt Gatos wrote: Is it possible to reuse existing translation - I like 'Choose one'? If my app has 32 languages, then I should create 32 records in each file? On Thu, Aug 27, 2009 at 3:58 PM, Dipu dipu@googlemail.com wrote: add this in your

Re: Resource without sessionId

2009-07-30 Thread Gatos
Igor, You're right! This 302 depends on server or server configuration. For example tomcat just sets cookie without redirect. I guess the correct question will be - how to generate url without sessionId from WebResource? I'm trying to generate url to an application page from a .csv file. If I

Re: Resource without sessionId

2009-07-29 Thread Gatos
help anyone? :P On Tue, Jul 28, 2009 at 10:16 AM, Gatos ega...@gmail.com wrote: When I try to request a resource using url http://domain.com/resource.csv then I get 302 to http://domain.com/resource.csv;jsessionid=joiadfadsfad and all generated links it csv file with 'jsessionid' parameter

Resource without sessionId

2009-07-28 Thread Gatos
When I try to request a resource using url http://domain.com/resource.csv then I get 302 to http://domain.com/resource.csv;jsessionid=joiadfadsfad and all generated links it csv file with 'jsessionid' parameter. How to use resource without sessionid? Thank you

executing wicketSubmitFormById

2009-07-27 Thread Gatos
Hello, Wicket lovers! I'm trying to execute wicketSubmitFormById from my custom function. Function itselft looks like this: function wicketSubmitFormById(formId, url, submitButton, successHandler, failureHandler, precondition, channel) I have examined the ajax submit button and it has the

Re: executing wicketSubmitFormById

2009-07-27 Thread Gatos
I have temporary solved problem calling onclick function: document.getElementById('ajaxSubmitButton').onclick() Does anyone know any better solution? On Mon, Jul 27, 2009 at 1:02 PM, Gatos ega...@gmail.com wrote: Hello, Wicket lovers! I'm trying to execute wicketSubmitFormById from my

Re: urls with localization

2009-07-27 Thread Gatos
://www.nabble.com/Is-IRequestTargetUrlCodingStrategy-needed-for-mapping-bookmarkable--URLs--td24407411.html#a24409330 Alex Objelean Gatos wrote: Hello, How is it possible to use such urls in wicket? If users clicks that link then appropriate page with defined locale will be shown