Portlet RequestCycle logRuntimeException

2009-11-27 Thread Goran Novak
I'm using wicket 1.4.1 for developing portlets on liferay 5.2.5 jboss 4.2.3. In my portlet on a page I have three DataView-es each with its own page navigation. I overrided PagingNavigation, PagingNavigator, PagingNavigationLink and PagingNavigationIncrementLink to be able to give paging

Portlet, liferay, strange error messages

2009-11-03 Thread Goran Novak
Hi I'm using wicket 1.4.1 to develop portlets for liferay 5.2.3. In jboss server.log I see errors coming from wicket. Does's somebody know if these are real errors or just info messages that wicket sends to console like error messages as it seems. Porlets works fine. Versions

Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Goran Novak
you are using wicket filter or servlet? -igor I'm using filter. filter-classorg.apache.wicket.protocol.http.WicketFilter/filter-class -- View this message in context: http://www.nabble.com/URL-mounting-on-Websphere-causes-Error-404-tp22455795p22471450.html Sent from the Wicket -

Re: URL mounting on Websphere causes Error 404

2009-03-12 Thread Goran Novak
Philippe Marzouk-2 wrote: If you are using WicketFilter you need to apply this: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 Philippe I tryed to add the custom property and restarted the server but the problem still occures.

URL mounting on Websphere causes Error 404

2009-03-11 Thread Goran Novak
Hi, I developed my application using Jetty server and URL mounting worked fine. When I deploy it on Websphere it still works but on the end of HTML response to browser, string Error 404: SRVE0190E: File not found: /home is appended. I'm using: - wicket 1.3.4 - IBM WebSphere Application Server

Re: DateTextField, format not valid, message key

2008-10-21 Thread Goran Novak
It works, thanks :) dateTextField.IConverter.Date = The date is not valid custom message Serkan Camurcuoglu wrote: Wicket in Action book says that IConverter.Date should work.. *** -- View this message in context:

DateTextField, format not valid, message key

2008-10-20 Thread Goran Novak
Hi, I'm using the org.apache.wicket.datetime.markup.html.form.DateTextField component for my date fields. When I enter some random string in the text field in the feedback panel, 'asdfasdf' is not a valid Date. message appears. I would like to customize that message, but I can't find which key

Static text and condition

2008-06-19 Thread Goran Novak
Hi, What is the best (wicket) way to do the next: I have one page which has to show few sentences (static text), but the sentences are different according to the input data. For example if input to the page constructor is: Page(input1 = 0, input2 = 0, inpu3 = 0) Page has to show these three

Re: Radio group, model

2008-04-15 Thread Goran Novak
Thanks, I got it to work but I dont't understand why does RadioGroup has to have its own model. RadioGroup has a constructor RadioGroup(java.lang.String id), why does it exist if you can't create RadioGroup without its own model. It seems somewhat misleading. Here is the solution if someone

Radio group, model

2008-04-14 Thread Goran Novak
Hi, I have a form with a radio group. Everithing works (page renders without errors) but I can't get selected radio in forms onSubmit method. model.getSomeRadioGroup() returns null. It probably some logical error using the models. Does radioGroup have to have its own model or something like