Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, We use wicket 1.3 in the production environment. That's why, other wise no issues -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26385784.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread Martin Makundi
What's the problem of upgrading wicket version? ** Martin 2009/11/17 vela : > > Hello again, > > It is working fine with wicket 1.3.6. But is there any way to make modal > window work in IE8 with wicket.1.3? > -- > View this message in context: > http://old.nabble.com/Isssues-in-Modal-Window-dis

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, It is working fine with wicket 1.3.6. But is there any way to make modal window work in IE8 with wicket.1.3? -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26384964.html Sent from the Wicket - User mailing list archive at Na

Re: Modal window and resource request target

2009-11-16 Thread Ernesto Reinaldo Barreiro
Maybe the solution Sven proposes here can be of some help http://cwiki.apache.org/WICKET/ajax-update-and-file-download-in-one-blow.html Best, Ernesto On Tue, Nov 17, 2009 at 6:51 AM, mfs wrote: > > Am looking for

Re: Modal window and resource request target

2009-11-16 Thread mfs
Am looking for something very similar. Matej can you elaborate on what you meant by getting the url of the request listener ? Thanks in advance Farhan. jwray wrote: > > > Hi, > > thanks for the prompt reply. Can you give me some details about where to > get the URL or request listener from

Re: wicket 1.4 : Link with no model

2009-11-16 Thread Jeremy Thomerson
Two things: 1 - use Link foo = new Link 2 - for simply redirecting, use bookmarkablepagelink(PersonPage.class). -- Jeremy Thomerson http://www.wickettraining.com On Mon, Nov 16, 2009 at 4:14 PM, smallufo wrote: > Hi > I am migrating my wicket 1.3 project to 1.4. > One problem is this : > >

Re: Show source problem using AbstractAjaxTimerBehavior

2009-11-16 Thread Muro Copenhagen
Well that explains it. Ok, thanks for the tip Igor and Jeremy... Best Regards On Mon, Nov 16, 2009 at 10:57 PM, Jeremy Thomerson < jer...@wickettraining.com> wrote: > Or use the web developer tools in FF and use "view generated source". > > -- > Jeremy Thomerson > http://www.wickettraining.com

wicket 1.4 : Link with no model

2009-11-16 Thread smallufo
Hi I am migrating my wicket 1.3 project to 1.4. One problem is this : Link personPageLink = new Link("personPageLink") { @Override public void onClick() { setResponsePage(PersonPage.class); } }; add(personPageLink); Because Link is generized , eclip

Re: Show source problem using AbstractAjaxTimerBehavior

2009-11-16 Thread Jeremy Thomerson
Or use the web developer tools in FF and use "view generated source". -- Jeremy Thomerson http://www.wickettraining.com On Mon, Nov 16, 2009 at 9:42 AM, Igor Vaynberg wrote: > source only shows the initial load, not the changes made via ajax > executed javascript. use firebug to view the actua

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread TahitianGabriel
Have you tried with the latest version (1.3.6)? Also don't forget to put your modal inside a form as stated in the javadoc, if you modal contains a form. vela wrote: > > Hello again, > > How to resolve this issue, I am using wicket 1.3. How to fix it(Modal > window appearing in IE8). > >

Re: multi file upload question

2009-11-16 Thread Pieter Degraeuwe
The multiple files upload is achieved by a flash object. It works both in firefox as chrome (but, indeed, sometimes it is in gmail not available). I didn't need such a feature yet, however I was curious how they (google) did it :-) To prove it is flash, just right click on the 'Attach a file', and

Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-16 Thread Jeffrey Schneller
At the link[1] it describes how to configure wicket to use Spring and Hibernate. In the applicationContext.xml file there is reference to a n interceptor bean. What is this interceptor bean? What is the definition of this bean? Everything else seems to make sense. Also how would one move th

Re: multi file upload question

2009-11-16 Thread Igor Vaynberg
hrm, i know chrome supports it, but not firefox in gmail. you will have to look at how chrome does it, im sure building support for that should be pretty easy. -igor On Mon, Nov 16, 2009 at 8:51 AM, Troy Cauble wrote: > I'm familiar with this multi file upload example: > http://www.wicket-librar

multi file upload question

2009-11-16 Thread Troy Cauble
I'm familiar with this multi file upload example: http://www.wicket-library.com/wicket-examples/upload/multi where a system file chooser is used multiple times to select single files to build the upload list. I see other web apps (gmail for example) where the user can select multiple files with on

Re: highlight a line in a table of AjaxLinks

2009-11-16 Thread Eyal Golan
got it :) thanks Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary On Mon, Nov 16, 2009 at 5:43 PM, Igor Vaynberg wrote: > this will get you most of th

Re: highlight a line in a table of AjaxLinks

2009-11-16 Thread Igor Vaynberg
this will get you most of the way there http://wicketstuff.org/wicket14/repeater/?wicket:bookmarkablePage=:org.apache.wicket.examples.repeater.OIRPage -igor On Mon, Nov 16, 2009 at 7:04 AM, Eyal Golan wrote: > Hello, > we have a DataTable with one column that holds a fragment. > In that fragmen

Re: Show source problem using AbstractAjaxTimerBehavior

2009-11-16 Thread Igor Vaynberg
source only shows the initial load, not the changes made via ajax executed javascript. use firebug to view the actual dom structure. -igor On Mon, Nov 16, 2009 at 6:16 AM, Muro Copenhagen wrote: > Hi, > > I am using the wicket AbstractAjaxTimerBehavior, that checks if a job i have > executed has

Re: Newbie help with tabs example please

2009-11-16 Thread Igor Vaynberg
there should not be a resources folder under your webroot, that is a virtual folder that wicket will use. what happens when you hit the css url through the browser? -igor On Sun, Nov 15, 2009 at 2:49 PM, Walt Parkman wrote: > Hello, > I have described my problem at http://waltparkman.wikidot.co

highlight a line in a table of AjaxLinks

2009-11-16 Thread Eyal Golan
Hello, we have a DataTable with one column that holds a fragment. In that fragment we put an AjaxLink: @Override public void populateItem(Item item, String componentId, IModel model) { CampaignEntity entity = (CampaignEntity) model.getObject();

Show source problem using AbstractAjaxTimerBehavior

2009-11-16 Thread Muro Copenhagen
Hi, I am using the wicket AbstractAjaxTimerBehavior, that checks if a job i have executed has finished. When it has finished, i have a link i want to display. I have also added an attribut modifier to the link, that will add a javascript onclick to the link. My problem is that the changes made

Re: Isssues in Modal Window display in IE8

2009-11-16 Thread vela
Hello again, How to resolve this issue, I am using wicket 1.3. How to fix it(Modal window appearing in IE8). -- View this message in context: http://old.nabble.com/Isssues-in-Modal-Window-display-in-IE8-tp26047156p26371269.html Sent from the Wicket - User mailing list archive at Nabble.com.

Internal error parsing wicket:interface

2009-11-16 Thread Martin Makundi
Hi! We get a lot of this error on our production site, what might be the reasond and how to avoid it? 2009-11-16 12:01:39,017 73184854 [btpool0-293] ERROR RequestCycle - org.apache.wicket.WicketRuntimeException: Internal error parsing wicket:interface = resources org.apache.wicket.protocol.http.

Thanks to McIlwee, Craig

2009-11-16 Thread Jack He
Thanks to McIlwee, Craig. My english is poor. Sorry,my name is Jack he.I got a mistake in my first question. I regret that wicket-list refused my account hxy...@163.com and I just want to ask questions about wicket. - 2009/11/13 McIlwee, Craig Allow me