Re: Validation messages from properties file not working.

2017-08-24 Thread Entropy
fectly. I change it to a web markup container or > hiddenfield, > > and it fails to find the message. Same name, same code doing the > validation > > and the adding of the validation key. > > > > I tried a TextField with visibility set to false and that didn't even > show &

Re: Validation messages from properties file not working.

2017-08-23 Thread Sven Meier
hich makes sense). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Validation-messages-from-properties-file-not-working-tp4678575p4678588.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Validation messages from properties file not working.

2017-08-23 Thread Entropy
of the validation key. I tried a TextField with visibility set to false and that didn't even show the error (which makes sense). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Validation-messages-from-properties-file-not-working-tp4678575p4678588.html Sent from the Users

Re: Validation messages from properties file not working.

2017-08-23 Thread Entropy
The properties file is in the same package as the page, and has the same prefix name, LandingPage_Cp10. Other errors added to TextFields and whatnot from the SAME VALIDATOR are working that use messages from that SAME FILE. I even can add the same message to a regular textfield in that same

Re: Validation messages from properties file not working.

2017-08-23 Thread Martin Grigorov
ve to > guess > that it's because we are binding to the WMC that it's not working? > > Properties File line: > CaptchaRequired=The CAPTCHA verification is required. Please complete it to > continue. > > Where we add the key (in an abstractformvalidator): >

Validation messages from properties file not working.

2017-08-22 Thread Entropy
that it's not working? Properties File line: CaptchaRequired=The CAPTCHA verification is required. Please complete it to continue. Where we add the key (in an abstractformvalidator): ((WebMarkupContainer) form.get("wmcCaptchaError")).error(new ValidationError().addKey("CaptchaRequ

Re: Wicket properties file load at startup?

2017-03-23 Thread Entropy
I put getString("Required") in the init of the page. Yet on the event it did the same thing for about the same time. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-properties-file-load-at-startup-tp4677396p4677411.html Sent from the Users forum ma

Re: Wicket properties file load at startup?

2017-03-22 Thread Martin Grigorov
gt; happens on an ajax event that ought to be lightweight and kind of creates a > bad user experience for that first person in. I'd like to preload or do > this step on startup if possible. How can I make that happen? > > > -- > View this message in context: http://apache-wick

Wicket properties file load at startup?

2017-03-22 Thread Entropy
user experience for that first person in. I'd like to preload or do this step on startup if possible. How can I make that happen? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-properties-file-load-at-startup-tp4677396.html Sent from the Users forum mailing

Re: Properties file for *.jar full of custom validators

2015-12-28 Thread Štefan Šimík
: There is one cause why my validation messages did not work: *.properties files were missing in final *.jar artifact And there are 2 possible solutions how to fix that: 1. Put *.utf8.properties file for wicket into src/main/resources/yourpackage/YourValidator.utf8.properties 2. or put the same

Re: Properties file for *.jar full of custom validators

2015-12-27 Thread Štefan Šimík
y is found in properties files. But solution with using standard *.properties file would be still nicer for me, if possible. On Sun, Dec 27, 2015 at 8:25 PM, Martin Grigorov <martin.grigo...@gmail.com> wrote: > Hi, > > I don't have my IDE with me now, so I can't verify but > Your

Properties file for *.jar full of custom validators

2015-12-27 Thread Štefan Šimík
I have separate *.jar containing custom form-component validators. (in the *.jar file, there are only validators - no other Components, no WebPage(s), no WebApplication) MY QUESTION: Which *.properties file should I create for these validators, so the validator classes and their default messages

Re: Properties file for *.jar full of custom validators

2015-12-27 Thread Martin Grigorov
gt; (in the *.jar file, there are only validators - no other Components, no > WebPage(s), > no WebApplication) > > MY QUESTION: > Which *.properties file should I create for these validators, so the > validator classes > and their default messages can be contained together in one *.jar? >

Re: Properties file for *.jar full of custom validators

2015-12-27 Thread Tobias Soloschenko
Hi, did you put the properties in src/main/java or src/main/resources? You have to but it into resources if no additional maven settings are applied. So create a package with the same name in resources and name the properties file the same as the class src/main/java/my/package

Accessing a .properties file

2015-06-29 Thread Lukas Fülling
Hi, I want to access a properties file using a BufferedInputStream for reading and a FileOutputStream for writing. My problem is that I don’t know what to use as constructor of the BIS/FOS. Currently I’m using just „config.properties“. But the program keeps throwing exceptions at me

Re: Accessing a .properties file

2015-06-29 Thread Andrea Del Bene
Hi, if you are trying to read/write files in a specific package take a look here: http://stackoverflow.com/questions/5291852/writing-to-file-inside-package-java Andrea. Hi, I want to access a properties file using a BufferedInputStream for reading and a FileOutputStream for writing. My

Exception when trying to load resource from a properties file.

2014-03-14 Thread vdaras
file is also deployed for some reason.The .war is packaged by Maven, using the pom file from the wicket quickstart archetype. Any ideas? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Exception-when-trying-to-load-resource-from-a-properties-file-tp4664967.html Sent from

Re: Exception when trying to load resource from a properties file.

2014-03-14 Thread Martin Grigorov
the It is interesting to find out how HomePage.properties.xml appeared if you didn't added it. pom file from the wicket quickstart archetype. Any ideas? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Exception-when-trying-to-load-resource-from-a-properties-file-tp4664967.html

SpringBean and properties file.

2014-02-11 Thread Entropy
.nabble.com/SpringBean-and-properties-file-tp4664377.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: SpringBean and properties file.

2014-02-11 Thread Sven Meier
.nabble.com/SpringBean-and-properties-file-tp4664377.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

RE: How to add line breaks in the summary text of Wizard properties file

2014-02-06 Thread dpmihai
In Wicket 5 it was as easy as using br tags inside summary String. In Wicket 6 this simple way does not work anymore. Why? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4664234.html Sent

Re: How to add line breaks in the summary text of Wizard properties file

2014-02-06 Thread Sven Meier
.nabble.com/How-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4664234.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: How to add line breaks in the summary text of Wizard properties file

2014-02-06 Thread dpmihai
this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4664241.html Sent from the Users forum mailing list archive at Nabble.com

Re: How to add line breaks in the summary text of Wizard properties file

2013-08-01 Thread shimin_q
wicket ids for the MultiLineLabels for each class. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4660625.html Sent from the Users forum mailing list archive at Nabble.com

RE: How to add line breaks in the summary text of Wizard properties file

2013-08-01 Thread shimin_q
-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4660626.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread shimin_q
Hi, I am using wicket Wizard extension to create a create metaprofile wizard. I am having trouble incorporating line breaks in the summary text of the properties file. As you can see below, the summary text for the steps are long, and I intended to break into several lines, but br/ does

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
with Wicket to get up to speed with the basic features. ~ Thank you, Paul Bors -Original Message- From: shimin_q [mailto:smq...@hotmail.com] Sent: Wednesday, July 31, 2013 3:20 PM To: users@wicket.apache.org Subject: How to add line breaks in the summary text of Wizard properties file Hi, I am

Re: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Sven Meier
extension to create a create metaprofile wizard. I am having trouble incorporating line breaks in the summary text of the properties file. As you can see below, the summary text for the steps are long, and I intended to break into several lines, but br/ does not seem to work

Re: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread shimin_q
-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4660595.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Sven Meier
(); } })); } } } Any ideas about the error? Thanks so much for your help! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-line-breaks-in-the-summary-text-of-Wizard-properties-file-tp4660589p4660595.html Sent from the Users forum mailing list archive

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
...@hotmail.com] Sent: Wednesday, July 31, 2013 4:43 PM To: users@wicket.apache.org Subject: Re: How to add line breaks in the summary text of Wizard properties file Thanks for the suggestion! Yes, I am extending WizardStep. Here is what I did to my code following your suggestion (the Header class

RE: How to add line breaks in the summary text of Wizard properties file

2013-07-31 Thread Paul Bors
breaks in the summary text of Wizard properties file The way I styled the wizard to fit my look-n-feel is by extending Wizard and creating MyOwnWizard and then overriding whatever I wanted to change in the Java code (such as the type of form to create) and also in the HTML. You can do this with any

.properties File for Custom Dropdown Message Not Found

2013-03-20 Thread eugenebalt
Where do I put the .properties file with my custom message that overrides Please Choose One for a dropdown? I have a panel which uses this dropdown, and I created a .properties file with the same name as the panel, in the same package. But it's not getting activated. (isNullValid is TRUE

Re: .properties File for Custom Dropdown Message Not Found

2013-03-20 Thread eugenebalt
So I'll try to clarify: 1) isNullValid = TRUE on this dropdown 2) I created a .properties file in the same location as the Page. Referenced the component's full hierarchy and set .null form.panel.mydropdown.null=TEST 3) This isn't working. Thanks -- View this message in context: http

Re: .properties File for Custom Dropdown Message Not Found

2013-03-20 Thread eugenebalt
Problem solved. It had to be .nullValid (I was using .null). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/properties-File-for-Custom-Dropdown-Message-Not-Found-tp4657377p4657387.html Sent from the Users forum mailing list archive at Nabble.com

How to get correct path of component for put it in properties file

2013-03-15 Thread yka
Hi all, I have problems to find the correct path of my component to place it in the properties file. In particular validation retrieves the name of the component through the properties file to display it in the browser if validation fails. I did component.getPath() and component.getRelativePath

Re: How to get correct path of component for put it in properties file

2013-03-15 Thread Martin Grigorov
Hi, The key in properties file should look like: myForm.myField.SomeValidator=Error message I.e. it starts with the relative path and ends with the class name of the used validator. On Fri, Mar 15, 2013 at 2:47 PM, yka i...@jcoder.de wrote: Hi all, I have problems to find the correct path

Re: How to add the key in properties file for DateTimeField component

2013-01-23 Thread Martin Grigorov
$HoursValidator. i've tried the various keys in my properties file, but none of them worked Thanks in advance WNU -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-add-the-key-in-properties-file-for-DateTimeField-component-tp4655654.html Sent from the Users

RE: merge all properties file into one file

2012-11-05 Thread Paul Bors
You can always identify the specific component given the dotted path notation but it would make it harder to maintain your code as refactoring and moving things on your page will also require refactoring your keys in your properties file. You can also simply override the resourceKey() method

Re: merge all properties file into one file

2012-10-24 Thread Carl-Eric Menzel
Is there any way that i can merge all my properties file into one big properties file ? If you application class is MyApplication then you can put everything into MyApplication.properties if you want. Carl-Eric

Re: load properties file from extrnal path

2012-08-06 Thread oliver.stef
Thanks Martin and Sandor!! That was really helping!!! I did it both - changed the Init() and added an external folder. WORKS GREAT!! Thanks again. Oliver. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/load-properties-file-from-extrnal-path-tp4650944p4651007.html

Re: load properties file from extrnal path

2012-08-03 Thread Martin Grigorov
AM, oliver.stef ova...@gmail.com wrote: Hi, How can I load external properties file? (i mean that I don't want to load a file that is in the regular wicket hierarchy where i have HelloWorld.java, HelloWorld.html, HelloWorld.properties), what i want is to load file from- C:\project

load properties file from extrnal path

2012-08-02 Thread oliver.stef
Hi, How can I load external properties file? (i mean that I don't want to load a file that is in the regular wicket hierarchy where i have HelloWorld.java, HelloWorld.html, HelloWorld.properties), what i want is to load file from- C:\project\HelloWorld.properties. i tried to do this but wicket

Re: load properties file from extrnal path

2012-08-02 Thread Sandor Feher
.1842946.n4.nabble.com/load-properties-file-from-extrnal-path-tp4650944p4650955.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Re: How to change the properties file location in Wicket

2012-05-31 Thread oliver.stef
\mycompany\WicketApplication_en.properties any idea? Thanks! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-change-the-properties-file-location-in-Wicket-tp4642901p4649606.html Sent from the Users forum mailing list archive at Nabble.com

Re: How to change the properties file location in Wicket

2012-05-31 Thread oliver.stef
Please change the sentence so i want Wicket to load the wicket:messag in the following order: to so i want Wicket to load the wicket:messag from the following files: Thanks! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-change-the-properties-file-location

Re: How to change the properties file location in Wicket

2012-05-21 Thread Martin Grigorov
, Thank you for your help, but my problem is that i need to put my properties file in folder that is not next to the HTML and Java files. i need to change the look-up algorithm of wicket. Any body know how to do it? Thanks! -- View this message in context: http://apache-wicket.1842946.n4

Re: How to change the properties file location in Wicket

2012-05-20 Thread oliver.stef
Hi Martin, Thank you for your help, but my problem is that i need to put my properties file in folder that is not next to the HTML and Java files. i need to change the look-up algorithm of wicket. Any body know how to do it? Thanks! -- View this message in context: http://apache-wicket

Re: How to change the properties file location in Wicket

2012-05-20 Thread Thomas Götz
Why do you need to change that? What is your usecase? -Tom On 20.05.2012 at 18:47 oliver.stef wrote: Hi Martin, Thank you for your help, but my problem is that i need to put my properties file in folder that is not next to the HTML and Java files. i need to change the look-up

How to change the properties file location in Wicket

2012-05-17 Thread oliver.stef
the *.properties file into one file (one *.properties file) that will be located in the src folder, or under the root folder. I don't know how to do it. i tried to read about IResourceStream but still, i didn't understand nothing... :( can someone help me with it? Thanks! -- View this message

Re: How to change the properties file location in Wicket

2012-05-17 Thread Martin Grigorov
, Page1.properties, Page2(another folder) with the files: Page2.html, Page2.java, Page2.properties). now, my problem is that i want to merge all the *.properties file into one file (one *.properties file) that will be located in the src folder, or under the root folder. I don't know how to do it. i

Accessing .properties file

2012-03-30 Thread SudeepShakya
I am using netbeans for maven project(with added wicket framework) and i want to access something.properties from a java class. Tried to modify pom.xml but not worked. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Accessing-properties-file-tp4518748p4518748.html

RE: Accessing .properties file

2012-03-30 Thread Wilhelmsen Tor Iver
I am using netbeans for maven project(with added wicket framework) and i want to access something.properties from a java class. Are the properties files not being put into the output jar/war files? Remember that Maven by default sets up a structure where *.java goes into src/main/java and

RE: Accessing .properties file

2012-03-30 Thread SudeepShakya
Yes i had put it in the required folder but i think i didn't write the right code in pom.xml. Coiuld u please give me a sample of the code for the pom.xml for accessing .properties file Thanks for reply. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Accessing

RE: Accessing .properties file

2012-03-30 Thread Wilhelmsen Tor Iver
Coiuld u please give me a sample of the code for the pom.xml for accessing .properties file Not sure what you mean, you don't usually put code in pom.xml. Look into configuring the resource elements to include the correct file types and folders. - Tor Iver

RE: Accessing .properties file

2012-03-30 Thread SudeepShakya
I mean that if sample.properties is the required file, then how to define in the pom.xml The sample.properties file is in the folder src/java. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Accessing-properties-file-tp4518748p4518872.html Sent from the Users forum

RE: Accessing .properties file

2012-03-30 Thread Richard W. Adams
This is really a Maven question, not Wicket. You'll probably get better answers from a Maven forum. From: SudeepShakya shakyasud...@live.com To: users@wicket.apache.org Date: 03/30/2012 07:15 AM Subject:RE: Accessing .properties file I mean that if sample.properties

PropertyModel with x.y as property name (from a properties file)

2012-01-10 Thread Decebal Suiu
Hello I have a form with new CompoundPropertyModelValueMap(properties) as model where properties are loaded from a properties file (legacy). My problem is that in properties file I have keys like x.y and I cannot use form.add(new TextFieldString(body.background-color)); How do I solve

Re: PropertyModel with x.y as property name (from a properties file)

2012-01-10 Thread Sven Meier
CompoundPropertyModelValueMap(properties) as model where properties are loaded from a properties file (legacy). My problem is that in properties file I have keys like x.y and I cannot use form.add(new TextFieldString(body.background-color)); How do I solve this problem? Thanks, Decebal -- View this message in context

Re: PropertyModel with x.y as property name (from a properties file)

2012-01-10 Thread James Carman
10.01.2012 15:44, schrieb Decebal Suiu: Hello I have a form with new CompoundPropertyModel**ValueMap(properties) as model where properties are loaded from a properties file (legacy). My problem is that in properties file I have keys like x.y and I cannot use form.add(new TextFieldString(body

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Andrea Del Bene
„ *Although I wrote all HTML in Arabic and it displays correctly * I am using Eclipse Helios and I set workspace encoding to UTF-8 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Arabic-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Andrea Del Bene
„ *Although I wrote all HTML in Arabic and it displays correctly * I am using Eclipse Helios and I set workspace encoding to UTF-8 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Arabic-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent from

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread aabfattah
Eclipse Helios and I set workspace encoding to UTF-8 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Arabic-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent from the Users forum mailing list archive at Nabble.com

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martijn Dashorst
-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread aabfattah
and it displays correctly * I am using Eclipse Helios and I set workspace encoding to UTF-8 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Arabic-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent from the Users forum mailing

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread aabfattah
-wicket.1842946.n4.nabble.com/Arabic-characters-not-appearing-correctly-from-properties-file-tp3826406p3826406.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: [hidden email]http

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread aabfattah
The problem maybe in *IsoPropertiesFilePropertiesLoader* *In the API it says *Load properties from properties file. The encoding of the file must be ISO 8859-1. * * On 20 September 2011 13:22, Ahmed Abdelfattah ahmed.abdelfattah.elshem...@gmail.com wrote: I get this info always in console

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martin Grigorov
maybe in *IsoPropertiesFilePropertiesLoader* *In the API it says *Load properties from properties file. The encoding of the file must be ISO 8859-1. * * On 20 September 2011 13:22, Ahmed Abdelfattah ahmed.abdelfattah.elshem...@gmail.com wrote: I get this info always in console : INFO

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martin A
Hi, Ahmed, As the Java specification defines, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you cannot enter arabic characters in a properties file. You have two options here: 1. Unicode escape your arabic characters, using converters, like

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread aabfattah
Well , the xml file didn't load and it loaded the default .properties files from wicket But the first trick worked :) On 20 September 2011 13:41, Martin A [via Apache Wicket] ml-node+s1842946n3826499...@n4.nabble.com wrote: Hi, Ahmed, As the Java specification defines, the .properties file

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martijn Dashorst
On Tue, Sep 20, 2011 at 1:41 PM, Martin A wml...@gmail.com wrote: Hi, Ahmed, As the Java specification defines, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you cannot enter arabic characters in a properties file. Wrong: with Java 6 you can

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martin Grigorov
On Tue, Sep 20, 2011 at 3:18 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: On Tue, Sep 20, 2011 at 1:41 PM, Martin A wml...@gmail.com wrote: Hi, Ahmed, As the Java specification defines, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Christian Huber
, As the Java specification defines, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you cannot enter arabic characters in a properties file. You have two options here: 1. Unicode escape your arabic characters, using converters, like this one

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Martin Grigorov
+s1842946n3826499...@n4.nabble.com  wrote: Hi, Ahmed, As the Java specification defines, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you cannot enter arabic characters in a properties file. You have two options here:    1. Unicode escape your arabic

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Christian Huber
, the .properties file contains only characters in ISO-8859-1, also known as Latin-1. Therefore you cannot enter arabic characters in a properties file. You have two options here: 1. Unicode escape your arabic characters, using converters, like this one herehttp://www.rishida.net/tools/conversion

Re: Arabic characters not appearing correctly from .properties file

2011-09-20 Thread Andrea Del Bene
I had experience with a site which should have been used by both Chinese and English users. IMHO in this scenario the best solution is to have the entire stack setted to utf-8, which includes properties file (not XML), web server and database (extra ISO chars can be written to db). If you

Re: quartz job bean access to properties file

2010-08-11 Thread Martin Grigorov
(); } } } And don't forget to shutdown the executor on Application#onDestroy() On Tue, Aug 10, 2010 at 9:52 PM, rmattler robertmatt...@gmail.com wrote: I'm struggling with how to get access to the properties file from a quartz job bean. I'm creating a pdf report that will then be emailed. I want to get

quartz job bean access to properties file

2010-08-10 Thread rmattler
I'm struggling with how to get access to the properties file from a quartz job bean. I'm creating a pdf report that will then be emailed. I want to get access to the properties file to tell me where to write the file along with other information. Here is my quartz job code. Thanks in advance

how to dinamically add a wicket property to the key in the properties file

2010-08-08 Thread zoran
Hi, I want to use key from properties file with wicket page property added in this value. I tried this way, but it doesn't work. String js=alert('+getString(alertmessage)+');; target.appendJavascript(js); alertmessage=Learning goal ${pagetitle} updated

Re: how to dinamically add a wicket property to the key in the properties file

2010-08-08 Thread Martin Makundi
Try getString(alertmessage, Model.ofMap(Collections.singletonMap(pagetitle, My page title))); ** Martin 2010/8/8 zoran jeremy...@gmail.com: Hi, I want to use key from properties file with wicket page property added in this value. I tried this way, but it doesn't work. String js=alert

Re: how to dinamically add a wicket property to the key in the properties file

2010-08-08 Thread zoran
Martin, I've tried this, but it doesn't work. Any other idea? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-dinamically-add-a-wicket-property-to-the-key-in-the-properties-file-tp2317893p2317912.html Sent from the Wicket - User mailing list archive

Re: how to dinamically add a wicket property to the key in the properties file

2010-08-08 Thread Martin Makundi
-property-to-the-key-in-the-properties-file-tp2317893p2317912.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail

Re: how to dinamically add a wicket property to the key in the properties file

2010-08-08 Thread zoran
Sorry, I don't know why it didn't work before, but it works now. Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-dinamically-add-a-wicket-property-to-the-key-in-the-properties-file-tp2317893p2317938.html Sent from the Wicket - User mailing list

DataView sort .properties file

2010-07-20 Thread always_rick
=:org.apache.wicket.examples.repeater.SortingPage The problem is: one of fields' type is integer 1, 2, 3, 4 ..., which represents Very High, High, Normal, Low... I use .properties file to display meaningful values to table cells. i can't sort the field properly, because it's always sorting by field's real value (1, 2, 3), not displaying value

Easy fast question, properties ´file for validation....

2010-06-15 Thread Victor_Trapiello
} } ***Home.properties*** at the same level as the other one Required=my custom messages ${label} formulario.campo.Required=my custome message for my form!!! thank you very much guy -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Easy-fast-question-properties-file

Re: Easy fast question, properties ´file for valida tion....

2010-06-15 Thread Jeremy Thomerson
in context: http://apache-wicket.1842946.n4.nabble.com/Easy-fast-question-properties-file-for-validation-tp2256542p2256542.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Easy fast question, properties ´file for valida tion....

2010-06-15 Thread Jeremy Thomerson
and Home.properties I´m doing somethiong wrong... I know but.. what¿? cheersss -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Easy-fast-question-properties-file-for-validation-tp2256542p2256573.html Sent from the Wicket - User mailing list archive at Nabble.com

How to keep language .properties file in a separate folder from the html pages

2010-02-26 Thread Eric Reagan
my app there is a location error about not being able to find my .properties file. I was wondering if anyone knew how to fix/resolve this or if it would be better just to keep the .properites file in the same directory as the html file. @Override protected void init

Re: How to keep language .properties file in a separate folder from the html pages

2010-02-26 Thread Igor Vaynberg
.properties file. I was wondering if anyone knew how to fix/resolve this or if it would be better just to keep the .properites file in the same directory as the html file.   �...@override    protected void init()    {        super.init();        IResourceSettings resourceSettings

Re: Loading properties file while using Spring @L

2010-02-08 Thread James Carman
Wicket application class. I tried to inject a Spring Resource using @SpringBean annotation, but it doesn't work in the my Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties

Re: Loading properties file while using Spring @L

2010-02-08 Thread Alec Swan
. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Loading properties file while using Spring @L

2010-02-08 Thread James Carman
application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec - To unsubscribe, e

Re: Loading properties file while using Spring @L

2010-02-08 Thread Igor Vaynberg
application class. I tried to inject a Spring Resource using @SpringBean annotation, but it doesn't work in the my Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file

Re: Loading properties file while using Spring @L

2010-02-08 Thread Alec Swan
to inject a Spring Resource using @SpringBean annotation, but it doesn't work in the my Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring

Re: Loading properties file while using Spring @L

2010-02-08 Thread Andrew Lombardi
properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Loading properties file while using Spring @L

2010-02-08 Thread Igor Vaynberg
for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec - To unsubscribe, e-mail: users-unsubscr

Re: Loading properties file while using Spring @L

2010-02-08 Thread Alec Swan
to use a single properties file read by Wicket and Spring. Thanks, Alec - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Loading properties file while using Spring @L

2010-02-08 Thread James Carman
a Spring Resource using @SpringBean annotation, but it doesn't work in the my Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec

Re: Loading properties file while using Spring @L

2010-02-08 Thread Alec Swan
Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket and Spring. Thanks, Alec

Re: Loading properties file while using Spring @L

2010-02-08 Thread Alec Swan
tried to inject a Spring Resource using @SpringBean annotation, but it doesn't work in the my Wicket application class. I am looking for recommendations on how to read properties files from wicket application class. Ideally I would like to use a single properties file read by Wicket

  1   2   >