Re: WebPage: geting string

2010-11-01 Thread msantos
Hi there, regarding this code, i have a problem, it is trying to acess a url that dos not exist once the wicket application class name is diferent the real application url. it is trying to access http://localhost/(aplication name) but it is deployed with a diferent name because the war file has a

Re: WebPage: geting string

2010-11-01 Thread msantos
I have notice that the WebApplication class has a private instance variable wich gets the name of the class. It has a getter, but i do not see the setter. Is it possible to change? Can we override the getName() method and return the name we want, with no problems to the application? Thanks a lot

Re: DropDownChoice

2010-11-01 Thread msantos
Hi there. Probably your accountsList has a value wich cannot be converted to long. What does that list contains? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DropDownChoice-tp3022770p3022872.html Sent from the Users forum mailing list archive at Nabble.com.

Re: WebPage: geting string

2010-11-01 Thread msantos
the wicket version that i am using is 1.4.12, and that method on the Application class does not exist neither on the WicketFilter. Wich version is that source code you linked me? thanks -- View this message in context:

Re: WebPage: geting string

2010-11-01 Thread msantos
it can only be set once on the 1.5M version /** * Sets application name. This method must be called before any other methods are invoked and * can only be called once per application instance. * * @param name *unique application name

Re: WebPage: geting string

2010-11-01 Thread msantos
its working. thanks a lot -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WebPage-geting-string-tp2993717p3022961.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe,

Re: WebPage: geting string

2010-10-14 Thread msantos
Thanks a lot, i will try it -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WebPage-geting-string-tp2993717p2994968.html Sent from the Users forum mailing list archive at Nabble.com. - To

WebPage: geting string

2010-10-13 Thread msantos
Hi there. Is possible instanciate a WebPage component and the getting the string that represents that webpage? My intention is to create a method that returns a string representing a html page to use on a email. Thanks a lot -- View this message in context:

Modal Window and IE8

2010-09-24 Thread msantos
Hello there. I have notice that the problem that im posting have been already discussed, but i couldn't find the solution. When i was close to it, the page was already been removed. I'm having problems with modal windows on the IE Browser (IE8). On Google Chrome and Firefox it work fine, on

Re: StringResourceModel - On the Fly

2010-09-11 Thread msantos
Hi there. Is really this that i was looking for. Passing the Panel instance to the component variable, it finds the respective property file and returns the value. Thanks a lot man 5* to your help See ya -- View this message in context:

StringResourceModel - On the Fly

2010-09-06 Thread msantos
Hello there. I am using the StringResourceModel to get from the *.properties file strings to the pages of my web app. and it is working fine. For instance: StringResourceModel emailLabelModel = new StringResourceModel(emailLabel, null); emailLabel = new Label(emailLabel, emailLabelModel);

Re: StringResourceModel - On the Fly

2010-09-06 Thread msantos
Thats solve the problem. I already have a resource bundle on the application, but i was trying to eliminate it and just use the wicket StringResourceModel witch is more easy to maintain all the pages of the application. If there is no way to get the string from the .properties file of the page