Re: Recreate Scroll-Position after Paging (click on paging link)

2011-12-26 Thread Martin Grigorov
Hi, You'll need to add some JavaScript logic to your code to support that. First add click listener to the navigation link that will extract the current scroll coordinates and append them in the href. Then you need to add ondomready listener so that after page's DOM is ready you can parse the

Re: Overridable css resource

2011-12-26 Thread Martin Grigorov
Hi, See http://wicketinaction.com/2011/07/wicket-1-5-mounting-resources/ There I used following code for this: ResourceReference imagesResourceReference = new ImageResourceReference(); PageParameters imageParameters = new PageParameters(); String imageName = anyName.jpg;

Re: Control focus on input after a form feedback

2011-12-26 Thread chimaira
hI Sven Meier, Thanks for the trick , but that causes other issues. firts: I use wicket version 1.4.16 and for some raison I can t upgrade to 1.5, and the methode renderHead(IHeaderResponse) is missing. I got only this one renderHead(HtmlHeaderContainer container) . Note the given argument on

Re: Control focus on input after a form feedback

2011-12-26 Thread Martin Grigorov
Hi, On Mon, Dec 26, 2011 at 2:23 PM, chimaira death_style2...@hotmail.com wrote: hI Sven Meier, Thanks for the trick ,  but that causes other issues. firts: I use wicket version 1.4.16 and for some raison I can t upgrade to 1.5, and the methode renderHead(IHeaderResponse) is missing. I got

Job opportunity in Germany

2011-12-26 Thread geissbock
Hi folks, The department I work at as an architect is currently looking for a talented Wicket developer. We're a company with 5,000 employees located in the south-west of Germany. The position is permanent and full-time, and it is required to work on-site, i.e. it is currently not possible to

Re: Overridable css resource

2011-12-26 Thread Serban Balamaci
Hi Martin, That's a good solution, currently I keep the response.renderCSSReference(new CustomCssResourceReference(front.css)) but implement a custom DecoratingHeaderResponse to chose if I return instead of the string the original packaged css resource in the war file. DecoratingHeaderResponse

Re: Modal Window respond 404 with Internet Explorer.

2011-12-26 Thread ashindler
Hi, I am having the same issue. I went to ticket 4241 and saw that there was a fix - do I just replace my wicket-extensions-1.5.3.jar file with the wicket-extensions-mybuild.jar file that I download from the patch zip? I do this but the problem still remains - modal windows that were working fine

AW: adjust my web application for smartphone like iPhone

2011-12-26 Thread Stefan Lindner
This is a css case. Just query the web for css media query and you will find lots of examples for resolution dependant css styling. -Ursprüngliche Nachricht- Von: mili [mailto:mili...@yahoo.de] Gesendet: Montag, 26. Dezember 2011 17:33 An: users@wicket.apache.org Betreff: adjust my web

Re: AW: adjust my web application for smartphone like iPhone

2011-12-26 Thread David Legg
Using css media queries is not necessarily the correct answer for responses to smartphone requests. Media queries form part of the toolkit which comes under the banner of 'Responsive Web'. The problem with media queries on their own is that you may ask a smartphone to download a large image

Re: AW: adjust my web application for smartphone like iPhone

2011-12-26 Thread Jeff Schneller
There was a posting about this about a year ago in regards to Walmart's mobile site. I believe the best way to handle this is use the idea of localization. Basically create localized versions of your pages using the wicket built in tools. Instead of basing localization off of country/language

Re: Modal Window respond 404 with Internet Explorer.

2011-12-26 Thread Masaya Seko
Hi, wicket-extensions-mybuild.jar in WICKET-4241_with_patch1.zip is old. This file has been patched incomplete. To check the fix, you need to build and apply the WICKET-4241.patch to Wicket1.5.3. --- On Tue, 2011/12/27, ashindler alexshind...@hotmail.com wrote: Hi, I am having the same