Re: Wicket war file deployment to Heroku

2014-01-17 Thread Gerrit Wassink
Hello Martin, Via git rm Procfile -f i first removed the file and i made a new one after that.Now i pushed the war file again to heroku and this time the Profile worked. The app got a dyno (processortime from Heroku) and was recognized as an webapplication. But still there is this application

Displaying Wicket version number

2014-01-17 Thread Oliver B. Fischer
I would like to show the wicket version number in the about page of my application. Is the version numner available as message property or do I jave to do it by my own? BYe, Oliver -- Oliver Fischer M +49 178 7903538 E oliver.fisc...@profitbricks.com W http://www.profitbricks.com J

Re: Displaying Wicket version number

2014-01-17 Thread Martin Funk
Hint, create a quickstart http://wicket.apache.org/start/quickstart.html and look into the code :-) otherwise go for: getApplication().getFrameworkSettings().getVersion() mf 2014/1/17 Oliver B. Fischer mails...@swe-blog.net I would like to show the wicket version number in the about page

Re: Wicket war file deployment to Heroku

2014-01-17 Thread Martin Grigorov
I don't understand you. A workaround for what ? The link describes how to setup Wicket Quickstart app at Heroku. Without the error it is impossible to tell you what is wrong. Please contact Heroku support and ask them what is wrong. On Fri, Jan 17, 2014 at 10:51 AM, Gerrit Wassink

Re: Wicket war file deployment to Heroku

2014-01-17 Thread Gerrit Wassink
Ok i already did, but thanks anyway! Martin Grigorov mgrigo...@apache.org , 17-1-2014 11:35: I don't understand you. A workaround for what ? The link describes how to setup Wicket Quickstart app at Heroku. Without the error it is impossible to tell you what is wrong. Please contact Heroku

Horizontal scroll for Palette

2014-01-17 Thread grazia
I have tried to override the palette css and added overflow-x:scroll to both table.palette and td.pane, but to no avail. ANybody succeeded in this ? ALl previous posts on the topic do not record any success .. table.palette { border: 0; overflow-x:scroll; white-space:

Re: Horizontal scroll for Palette

2014-01-17 Thread Martin Grigorov
I am not CSS expert but if the select parent is .a div instead of td then setting the width and overflow-x to the div works. I have no idea why Palette's markup uses table. Maybe it is a legacy. We have a ticket to rework all tables to divs where this makes sense. Martin Grigorov Wicket Training

Re: Horizontal scroll for Palette

2014-01-17 Thread grazia
I figured ... please let us know when that change is available. Thanks On Fri, Jan 17, 2014 at 10:45 AM, Martin Grigorov-4 [via Apache Wicket] ml-node+s1842946n4663804...@n4.nabble.com wrote: I am not CSS expert but if the select parent is .a div instead of td then setting the width and

Dynamic JQuery Resource Reference for http // https context

2014-01-17 Thread Simon B
Hello, My Wicket app running (6.13.0) is run both under http://www.mydomain.com/ and https://admin.mydomain.com/ In the http domain for the JQuery javascript library i use a UrlResourceReference that points to http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js for the https domain

Re: OT: good java hosting

2014-01-17 Thread Илья Нарыжный
I also recommend to take a look to this: http://jelastic.com (about platform: http://docs.jelastic.com) It's platform for horizontal and vertical scalling (like apache WS). Ilia 2014/1/16 Ernesto Reinaldo Barreiro reier...@gmail.com Thanks to all for replays! On Fri, Jan 17, 2014 at 12:32

Re: Dynamic JQuery Resource Reference for http // https context

2014-01-17 Thread Martin Grigorov
Hi, Here is a way: override org.apache.wicket.settings.JavaScriptLibrarySettings#getJQueryReference() and return UrlResRef with full url when http or UrlResRef with context relative url (see org.apache.wicket.request.resource.UrlResourceReference#setContextRelative) when https. See

Re: Horizontal scroll for Palette

2014-01-17 Thread Martin Grigorov
Just watch https://issues.apache.org/jira/browse/WICKET-5349 Martin Grigorov Wicket Training and Consulting On Fri, Jan 17, 2014 at 6:58 PM, grazia grazia.russolass...@gmail.comwrote: I figured ... please let us know when that change is available. Thanks On Fri, Jan 17, 2014 at 10:45 AM,

Re: Dynamic JQuery Resource Reference for http // https context

2014-01-17 Thread Simon B
Martin, Thank you very much for your quick reply, that works a perfectly. In case it might help someone else, here is the code that I came up with: Then add an call to setJavaScriptLibrarySettings() in your overriden Application.init() Cheers Simon -- View this message in context:

wicket:containers as ajax targets

2014-01-17 Thread Steve
I'm wondering if there's a better solution to the way I've been solving a particular problem. When using listviews within a table I quite often do something like this: table wicket:container wicket:id=list tr tdrow 1/td /tr tr tdrow 2/td

Re: wicket:containers as ajax targets

2014-01-17 Thread Sebastien
Hi, You can use, tbody as a replacement for wicket:container Best regards, Sebastien On Sat, Jan 18, 2014 at 12:42 AM, Steve shadders@gmail.com wrote: I'm wondering if there's a better solution to the way I've been solving a particular problem. When using listviews within a table I

6.13 migration. Failed on img src=#

2014-01-17 Thread Steve
Just tried to upgrade an app to 6.13 and it seems to be failing on this tag: img wicket:id=busyindicator src=#/ Image busyImage = new Image(busyindicator, busyIndicatorImageUrl); busyImage.add(AttributeModifier.replace(src, busyIndicatorImageUrl)); add(busyImage); [PackageResource name = #,

Fwd: wicket:containers as ajax targets

2014-01-17 Thread Sebastien
-- Forwarded message -- From: Sebastien seb...@gmail.com Date: Sat, Jan 18, 2014 at 3:19 AM Subject: Re: wicket:containers as ajax targets To: shadders@gmail.com Yes it will and yes this is valid !ELEMENT TABLE http://www.w3.org/TR/html4/struct/tables.html#edef-TABLE - -

Re: Fwd: wicket:containers as ajax targets

2014-01-17 Thread Steve
Thanks Sebastion... forgot about that part though there are other reasons wrapping in a container beyond using it as an ajax target. On 18/01/14 12:28, Sebastien wrote: -- Forwarded message -- From: Sebastien seb...@gmail.com Date: Sat, Jan 18, 2014 at 3:19 AM Subject: Re: