RE: root context, IE, home page is not found

2010-04-06 Thread FakeBoy
Hi, I use Glassfish v 2.1.1 with wicket 1.4.6 and in this version is redirect to root changed form "./" to "." (BookmarkablePageRequestTarget.respond(RequestCycle requestCycle)). But I have still problem with this in IE(See attached picture). When I send redirect with location finishing with ".

Re: OnlyTargetActivePage param

2010-03-06 Thread FakeBoy
Hi, I understand the usege of this two methods. But what I really don't understand is that one of them create callback adress which can be process also on non-active page, but second not. In my app I had to switch off multi window support. So now I have only one page map for all my pages (also o

Re: How to strip Wicket tags in development mode?

2010-03-04 Thread FakeBoy
Hi, do you know something about my problem ? I asked about constructing callback script with OnlyTargetActivePage param. D. jWeekend wrote: > > David, > > Take a look here [1]. > > Regards - Cemal > jWeekend > OO & Java Technologies, Wicket > Consulting, Development, Training > http://jWeek

Re: HTTP Status 400 - There are some problems in the request: invalid URLPatternSpec

2009-11-11 Thread FakeBoy
I checked http://docs.huihoo.com/javadoc/jboss/4.0.2/javax/security/jacc/URLPatternSpec.java.html. I need change url to this : http://xyz.sk/mymount?wicket:interface=:0:form::IFormSubmitListener:: and everything work fine. Strange thing is that I developed app on Jetty and Tomcat and everything

Re: AW: Simple GET based stateless form

2008-11-17 Thread FakeBoy
Hi, I have also some problem with stateless form in wicket 1.4-m3. I still don't know where is the problem. My prob is described in http://www.nabble.com/StatelessForm-in-Bookmarkable-Page-problem-to19430608.html#a19430608 Dave Vinayak Borkar wrote: > > Stefan, > > What I see on your site is

Wicket 1.4 m3 StatelessForm

2008-09-11 Thread FakeBoy
Hi everyone, I try to work with StatelessForm, but I have strange problem. When I fill in form fields first time everything works good. But If I have some validation in some field (in my example field: first name is required) and if the walidation failed, and i try to click submit button some stra

Wicket & No-Serializable objects Web application

2008-09-06 Thread FakeBoy
Hello all, I am thinking about the best design architecture for public web project. I used to work with classic 3 tier architecture: 1. tier - tier of business logic (business domain obejcts) 2. tier - middle service tier or API to business logic (EJB, Spring, =>convert business object to DTO - Da

Stripping Javascript problem

2008-09-04 Thread FakeBoy
Hello all, I have some problem with using my app in DEPLOYMENT mode. I have special component, which use jQuery.js and one jQuery plugin for some js functionality. In DEVELOPMENT mode everything works fine, but when i switch to DEPLOYMENT mode it stops and I see some js exceptions in Firebug cons

Palette bind to attribute with value NULL

2008-08-28 Thread FakeBoy
I have some problem with usin Palette, because my backend bean collection attributes sometimes is null. I have some client logic bind to this attribute a I need that it will be null. I understand that is not so good when Pallete creates some List impl. But I thought about it and I see solution in

Re: No get method defined for expression recorder when using Palette and CompoundPropertyModel

2008-08-26 Thread FakeBoy
I have also the same problem, because my backend bean collection attributes sometimes is null. I have some client logic bind to this attribute a I need that it will be null. I understand that is not so good when Pallete creates some List impl. But I thought about it and I see solution in Palette's

Wicket 1.4m3 ModalWindow close problem in Opera

2008-08-15 Thread FakeBoy
Hi, I would like to ask you about my problem with modal modal window in Opera. When i close modal window everything works good in java (all listeners ale correctly called). But in browser window i still see some parts of modal window in background of my page. It dispappears only when i refresh pag

Re: Wicket 1.4m3 - AjaxButton, AjaxSubmitLink in ModalWindow in IE 7 Problem ?

2008-08-11 Thread FakeBoy
k in IE. For example: form.add(new TextField("id",...)) -> cause in IE Ajax Submit Problem I hope that it helps you, if you will have same problems like I had :thinking: Dave FakeBoy wrote: > > Thanks for your interest :) > I tried to isolate problem, because I use it in some

Re: Wicket 1.4m3 - AjaxButton, AjaxSubmitLink in ModalWindow in IE 7 Problem ?

2008-08-11 Thread FakeBoy
dow with an > AjaxSubmitLink that submits my form and closes the window and mine worked > fine. sorry I can't help with a solution but I can tell you that it is > possible to make work. > > > > FakeBoy wrote: >> >> Hi, >> I tried to submit form from ModalWindow wit

Wicket 1.4m3 - AjaxButton, AjaxSubmitLink in ModalWindow in IE 7 Problem ?

2008-08-10 Thread FakeBoy
Hi, I tried to submit form from ModalWindow with AjaxButton or AjaxSubmitLink. In Firefox, Opera, Safari everything works fine, but in IE 7 doesn't. No onSubmit or onError method is fired after button or link cliked in IE 7. I used WICKET DEBUG console and after clik on Button or Link i see messag

wicket 1.4 - Localizer getCacheKey BUG

2008-07-12 Thread FakeBoy
Hi, I migrate my app from wicket 1.3 to wicket 1.4. Everything works fine, but one thing behaves strange. I have BasePage and all others pages in my app extends this page. BasePage have some responsibilities and one of them is set correct page title. Example: public class BasePage ext WebPage {