Re: Wicket and RSS

2009-08-20 Thread Roman Zechner
you can simply use rome itself, it's easy to use. -roman VGJ wrote: I've got a simple RSS feed I'm trying to display on a page. Is wicketstuff-rome dead? Is there a better way? I'm not a maven user (not even familar with it) - so are there any jars I can download somewhere for

Re: How to configure data source for Jetty server?

2009-07-08 Thread Roman Zechner
Peter Thomas wrote: On Tue, Jul 7, 2009 at 2:08 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: http://docs.codehaus.org/display/JETTY/JNDI -igor On Mon, Jul 6, 2009 at 1:22 PM, Petr Fejfarpetr.fej...@gmail.com wrote: Hi all, When I've started learning Wicket, I followed

LogoutPage: PageParameters not set after redirecting to LoginPage

2009-05-28 Thread Roman Zechner
hi all, we are having a strange problem with page parameters. when the user logs out we call LogoutPage: ... PageParameters parameters = new PageParameters(); parameters.put(client, signature); setResponsePage(LoginPage.class, parameters); in LoginPage we do: ... String signature =

Re: Maven setup

2009-05-06 Thread Roman Zechner
hi, also check `mvn deploy` - you can use that to export your war with scp://, for maven eclipse integration check m2eclipse. as for lighttpd, i don't know, but i remember there was no ajp connector available last time i was searching, let us know if you have some experience on that! oh, and

Re: Package all CSS and JS

2009-04-09 Thread Roman Zechner
Hi Eduardo! I remember there was once a discussion here on the mailing list, I think part of that was http://techblog.molindo.at/2008/08/wicket-interface-speed-up-merging-resources-for-fewer-http-requests.html Roman Eduardo Nunes wrote: link href=... / for the css and script

Re: AjaxFallbackDefaultDataTable: redirect to specific page

2009-04-07 Thread Roman Zechner
, 2009 at 12:12 PM, Roman Zechner roman.zech...@liland.at wrote: how can i make sure to get back to the same page of a AjaxFallbackDefaultDataTable that i came from after a redirect? e.g.: 1. i am on page 3 of a table of persons (listpage). 2. i click on a row to edit a person (detailpage). 3

AjaxFallbackDefaultDataTable: redirect to specific page

2009-04-07 Thread Roman Zechner
how can i make sure to get back to the same page of a AjaxFallbackDefaultDataTable that i came from after a redirect? e.g.: 1. i am on page 3 of a table of persons (listpage). 2. i click on a row to edit a person (detailpage). 3. after submitting changes, i redirect to the listpage again, but i

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Roman Zechner
Daan van Etten wrote: FX sounds just way cool. WicketFX. Where function meets form. Web development in style. Say for yourself, would you rather want to work with a framework called Wicket, or a framework called WicketFX?! Birthday parties and pub nights never are the same again: What

Re: CheckBoxMultipleChoice: change markup from label to span

2009-03-30 Thread Roman Zechner
thanks for the hint! jcgarciam wrote: Hi, I guess the solution would be using a http://cwiki.apache.org/WICKET/listview-with-checkboxes.html ListView in conjunction with a CheckGroup object in order to achieve what you want. Roman Zechner | Liland wrote: is there a way to change

Re: best way to add tooltips in wicket

2009-03-26 Thread Roman Zechner
have a look at sweet titles http://www.dustindiaz.com/sweet-titles/ James Carman wrote: If you're interested in using static tooltips that are styled, we've had good luck with overlib. On Thu, Mar 26, 2009 at 5:34 AM, RoyBatty math...@afjochnick.net wrote: Right, thanks for all the input.

Re: LocaleDropDown does not switch locale anymore when deployed on server

2009-03-02 Thread Roman Zechner
, but if anyone has an explanation for this behaviour, I'd be happy. Cheers, Roman Roman Zechner wrote: Hi, we are using the LocaleDropDown component mentioned in Wicket in Action. While it works on the local machine, it does not when deployed on our server. We need to switch between German

LocaleDropDown does not switch locale anymore when deployed on server

2009-02-26 Thread Roman Zechner
Hi, we are using the LocaleDropDown component mentioned in Wicket in Action. While it works on the local machine, it does not when deployed on our server. We need to switch between German and English. German works on my local machine, on the server it doesn't. Any ideas? Roman

Re: Wicket 1.3.5 behind a front-end proxy

2008-11-21 Thread Roman Zechner
Maybe this is related to servlet mapping? http://cwiki.apache.org/WICKET/best-practices-and-gotchas.html#BestPracticesandGotchas-WicketServletMapping Roman Anton Veretennikov schrieb: To get Apache 2.2 to proxy around Wicket, I have the following defined: IfDefine PROXY ProxyPass

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
I am using the maven jetty plugin in development and it works fine for me. I don't see why you shouldn't use it as Martijn pointed out? If there's a need, I can post the required configuration here. I am working under WinXP, all my stuff is redeployed after changes have been made when working

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
. If you haven't used that, you're missing out. With JavaRebel things are even brighter—no redeployment or restarting of servers (but I haven't toyed with their latest releases) Martijn On Wed, Sep 10, 2008 at 3:53 PM, Roman Zechner [EMAIL PROTECTED] wrote: I am using the maven jetty plugin

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
what configuration you are talking about, but I don't have to meddle with external jetty configurations, making sure that the resources are copied over etc, or redeploy on each compile. Martijn On Wed, Sep 10, 2008 at 4:38 PM, Roman Zechner [EMAIL PROTECTED] wrote: I don't know about the time

Re: Hot deployment / code swapping

2008-09-10 Thread Roman Zechner
Now I am using the embedded jetty server as suggested in the bonus chapters of Wicket in Action. But Spring complains that it is missing a bean dataSource, so I set the jetty deployment descriptor with WebAppContext bb = new WebAppContext();

Groovy + Spring + Wicket

2008-09-08 Thread Roman Zechner
I was courious on how to integrate Groovy in Wicket via Spring. I want to trigger a script via onSubmit action. The groovy script should print some lines on the console. But the code is never executed (at least it seems so). We are using the mvn jetty plugin, there are no problems, neither

Re: Groovy + Spring + Wicket

2008-09-08 Thread Roman Zechner
Julien Graglia wrote: Le lundi 08 septembre 2008 à 14:41 +0200, Roman Zechner a écrit : I was courious on how to integrate Groovy in Wicket via Spring. I want to trigger a script via onSubmit action. The groovy script should print some lines on the console. But the code is never executed

Re: Making entire row editable in a DataTable

2008-05-07 Thread Roman Zechner
Hm .. maybe you should have a look at the Editable TreeTable to get some ideas http://wicketstuff.org/wicket13/ajax/tree/table/editable ChuckDeal wrote: If you have a handle to the Item instance represetning the cell, then you can do something like cell.findParent(Item.class) which will get

Re: Sortable(DnD) editable TreeTable

2008-04-21 Thread Roman Zechner
Noone else interested in a similar component? What is the meaning of tree.updateTree(target)? In the code sample below I expect the tree to be reloaded when the button is pressed, but nothing happens. What am I doing wrong? Cheers, Roman Roman Zechner wrote: i am building a variant of matej

Re: Weird Ajax non-English characters encoding problem.

2008-04-11 Thread Roman Zechner
Hi Nils, in order for AJAX to work properly configure your Tomcat connector with URIEncoding=UTF-8 as shown here: http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html Roman Nils Tesdal schrieb: Hi, This thread is a few months old now but I have the same problem

Re: Displaying date as Label.

2008-04-03 Thread Roman Zechner | Liland
use this DateLabel.forDatePattern(java.lang.String id, IModel model, java.lang.String datePattern) cheers, roman users@wicket.apache.org wrote: Hi All, I need some help displaying date correctly in Label. I am using a text field(and DatePicker) to take date input and storing it in mySQL

Re: Modifying inline CSS in head of document

2008-04-03 Thread Roman Zechner | Liland
Thanks Igor, I came up with this solution public abstract class BasePage extends WebPage() { int height = .../*get Browser height*/ String headerCss = String.format(style type=\text/css\#leftmenu {height:%spx}/style, height); add(new StringHeaderContributor(headerCss)); which isn't free of