FeedbackPanel and Wizard

2009-02-27 Thread unka_hahrry
Hi! Is there any way to remove the default FeedbackPanel from a Wizard? I want to provide my own implementation of FeedbackPanel above the Wizard. I tried to override newFeedbackPanel(String id) and set the visibility to false, but it didn't seem to have an effect. -- View this message in

Re: FeedbackPanel and Wizard

2009-02-27 Thread unka_hahrry
Thanks for your fast reply, but NOW it seems to work with overriding newFeedbackPanel(String id), no idea why it do not work 15 minutes ago... Michael O'Cleirigh wrote: Hello, I think you can just call FeedbackPanel.setFilter(IFeedbackMessageFilter filter) and pass in a filter that will

German umlaute in PageParameters

2008-08-05 Thread unka_hahrry
Hello! Is there a possibility to use german umlaute (like ü, ö, ä) in the PageParameters? -- View this message in context: http://www.nabble.com/German-umlaute-in-PageParameters-tp18826285p18826285.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: German umlaute in PageParameters

2008-08-05 Thread unka_hahrry
Yes, I want to give a name as parameter, and German names may include umlaute, but the names are not correctly represented. greeklinux wrote: Hello, do you want to use Umlaute in your URL Parameters? unka_hahrry wrote: Hello! Is there a possibility to use german umlaute (like

Wicket CMS functionality for updating text and adding links

2008-10-01 Thread unka_hahrry
Hello! I'm looking for some CMS functionality that that give me the opportunity to update a text in a given div-tag. My first approach was to put the text into wicket:message tags and then overwrite the corresponding .properties file, using a textarea for updating the text and BufferedWriter for

wicket:link - no automatic italicizing behavior needed

2008-10-31 Thread unka_hahrry
Hello! Is there any possibility to disable the automatic italicizing behavior when using wicket:link-tags? -- View this message in context: http://www.nabble.com/%3Cwicket%3Alink%3E---no-automatic-italicizing-behavior-needed-tp20269389p20269389.html Sent from the Wicket - User mailing list

Re: AjaxLink in a DataView causing issues when loading multiple instance of the page

2009-05-18 Thread unka_hahrry
I have a similar problem using DataView and AjaxLink. Everything works fine, but sometimes (after a lot of clicks...) I get the following message: WicketMessage: component page:footer:pluginRepeater:2:plugin:rows:9:cols:10:viewpanel:playVideoLink1 not found on page

Writing to .properties files and make changes happen?

2008-04-02 Thread unka_hahrry
I'm using a BufferedWriter to change my .properties files dynamically, the .properties files are updated well but the changes don't appear in my wicket:message tag. Is there a possiblity to reload a .properties file? -- View this message in context:

Re: Writing to .properties files and make changes happen?

2008-04-03 Thread unka_hahrry
the text into the database? igor.vaynberg wrote: do they reload properly if wicket is running in development mode? -igor On Wed, Apr 2, 2008 at 7:51 AM, unka_hahrry [EMAIL PROTECTED] wrote: I'm using a BufferedWriter to change my .properties files dynamically, the .properties files

Re: Writing to .properties files and make changes happen?

2008-04-03 Thread unka_hahrry
I call this method from inside a WebPage: public static void setNewText(String path, String textId, String neuerText) throws IOException { ... getting old text as StringBuffer alt ... //create new String from content of

Re: Writing to .properties files and make changes happen?

2008-04-04 Thread unka_hahrry
Damn... Yes, it was the false path... Obviously the .properties file must be changed in the context of classes, not in the source... Thank you very much!!! Johan Compagner wrote: What is the path you write it in? Where sits the property file? On 4/4/08, unka_hahrry [EMAIL PROTECTED

ListView with images and getting absolut path

2008-04-09 Thread unka_hahrry
I want that all image files in a given directory are shown on my site so that the admin can simply add/delete image files by editing the directory. So I do this with ListView: ImgListView imgListView = new ImgListView(listImageData, new LoadableDetachableModel() {

Getting the context root

2008-04-15 Thread unka_hahrry
Hello! Is there a possibility to get the context root which I defined in my context descriptor for Tomcat? -- View this message in context: http://www.nabble.com/Getting-the-context-root-tp16699820p16699820.html Sent from the Wicket - User mailing list archive at Nabble.com.

How to set the path for a uploadfolder?

2008-04-24 Thread unka_hahrry
Hi! I want to save images to a specified uploadfolder, but I don't want to define the Folder object with an absolute path. Is there a possiblity to define a Folder relative to the context root? -- View this message in context:

Re: How to set the path for a uploadfolder?

2008-04-24 Thread unka_hahrry
Thanks, works fine. Mathias P.W Nilsson wrote: Not quite sure but you can get the folder that is the root of your application context File file = new File( getServletContext().getRealPath( / ) ); -- View this message in context: