Re: wicket-event added twice problem

2008-08-28 Thread Tomasz Prus
In which Wicket version should be filtered? 2008/8/28 Tomasz Prus [EMAIL PROTECTED] Heh :) Lightbox, not livebox 2008/8/28 Tomasz Prus [EMAIL PROTECTED] Wicket 1.3.4 When i add livebox JS script and google maps then livebox doesn't work properly because wicket-event is added twice

Re: wicket-event added twice problem

2008-08-28 Thread Tomasz Prus
, function(event){ new Event(event).stop(); gallery.goTo(this.id.replace(/thumb/,'')); }); i++; } }); /script and i think that wicket event object is recreated. Please give me some advise? 2008/8/28 Tomasz Prus [EMAIL PROTECTED] In which

Re: wicket-event added twice problem

2008-08-28 Thread Tomasz Prus
html 2008/8/28 Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] The other component, did you write the reference to wicket-event in html or via and header contributer..? Tomasz Prus wrote: I have inluded gmap component which adds wicket-event and i have other component

Re: wicket-event added twice problem

2008-08-27 Thread Tomasz Prus
Vazquez Wael [EMAIL PROTECTED] wrote: show us some code..:) Tomasz Prus wrote: Hi I have problem because wicket-event.js is added twice and couse error. (each component with wicket-event.js adds it) Please help, how can i add it only one? Similar problem is with css files

Re: wicket-event added twice problem

2008-08-27 Thread Tomasz Prus
Heh :) Lightbox, not livebox 2008/8/28 Tomasz Prus [EMAIL PROTECTED] Wicket 1.3.4 When i add livebox JS script and google maps then livebox doesn't work properly because wicket-event is added twice. 2008/8/27 Matej Knopp [EMAIL PROTECTED] What wicket version? This should be filtered

strange links

2008-06-06 Thread Tomasz Prus
I have links like this a class=B href=../../../Logowanie in page source. My boss wants i remove these dots. Can anyone help me ?

Re: strange links

2008-06-06 Thread Tomasz Prus
What is the reason? Why it is useful for website and why there is no option to disable it? 2008/6/6 Matej Knopp [EMAIL PROTECTED]: The dots are there for a reason. Wicket generates relative URLs. -Matej On Fri, Jun 6, 2008 at 8:44 AM, Tomasz Prus [EMAIL PROTECTED] wrote: I have links

how can ..

2008-05-23 Thread Tomasz Prus
How can i prepare url like this: ../London/9.html I need that city and advertNumber parameters be always at the end of url. Can You help me? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: how can ..

2008-05-23 Thread Tomasz Prus
Do You know SEO optimized urls like http://www.nabble.com/Page-reload-after-file-upload-td15869570.html ? 2008/5/23 Thomas Mäder [EMAIL PROTECTED]: What are you trying to achieve? Why do you need a text url instead of a link to a page? Thomas On Fri, May 23, 2008 at 9:07 AM, Tomasz Prus

Re: how can ..

2008-05-23 Thread Tomasz Prus
My boss wants such urls 2008/5/23 Tomasz Prus [EMAIL PROTECTED]: Do You know SEO optimized urls like http://www.nabble.com/Page-reload-after-file-upload-td15869570.html ? 2008/5/23 Thomas Mäder [EMAIL PROTECTED]: What are you trying to achieve? Why do you need a text url instead of a link

Re: how can ..

2008-05-23 Thread Tomasz Prus
://cwiki.apache.org/WICKET/seo-search-engine-optimization.html On Fri, May 23, 2008 at 9:46 AM, Tomasz Prus [EMAIL PROTECTED] wrote: My boss wants such urls 2008/5/23 Tomasz Prus [EMAIL PROTECTED]: Do You know SEO optimized urls like http://www.nabble.com/Page-reload-after-file-upload-td15869570

Re: how can ..

2008-05-23 Thread Tomasz Prus
hey, can you help me ?!!! 2008/5/23 Tomasz Prus [EMAIL PROTECTED]: What strategy should i use to achive such url: http://isport.eu/en/premier-league/liverpool-fc/news-19-2008-0.html ? 2008/5/23 Jonas [EMAIL PROTECTED]: Have you looked in the wiki? http://cwiki.apache.org/WICKET/reference

OpenSessionInView and LazyInitializationException

2008-05-07 Thread Tomasz Prus
I had such configuration: ?xml version=1.0 encoding=UTF-8? web-app id=WebApp_ID version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation= http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;

AjaxLink doesn't work for Wicket 1.3.3 ?

2008-04-14 Thread Tomasz Prus
I have AjaxLink which works good in Wicket 1.3.2 but doens't work whe i change version to 1.3.3. package pl.mainseek.car.wicket.components; import java.util.Arrays; import java.util.List; import org.apache.wicket.PageParameters; import org.apache.wicket.ajax.AjaxRequestTarget; import

Re: I have an error when try to test submit using FormTester

2008-04-09 Thread Tomasz Prus
Can You give mi more details how remove the UrlCompressingWebRequestProcessor because i don't have any idea?

I have an error when try to test submit using FormTester

2008-04-09 Thread Tomasz Prus
I have test and formTester.submit(); throws an error: java.lang.NumberFormatException: For input string: p:form at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at

Re: I have an error when try to test submit using FormTester

2008-04-09 Thread Tomasz Prus
Thank You very many :) I overide method newRequestCycleProcessor in my MockApplication and submit works now for me: @Override protected IRequestCycleProcessor newRequestCycleProcessor() { IRequestCycleProcessor newRequestCycleProcessor = super.newRequestCycleProcessor();