Re: ModalDialog and returning back

2012-06-08 Thread Melinda Dweer
Hi, Some things I would try are 1-Instead of a page use a panel for your modal. That way the page expired will not be shown on the page. 2-Make your page expired page the page you want to show. 3-AFAIK the method public void renderHead(IHeaderResponse response) { response.renderOnDom

Re: How to redirect to a page from an AJAX request?

2012-05-21 Thread Melinda Dweer
IFAIK setResponsePage(Page.class) should work: at least I remember using it successfully on an AJAX request cycle to redirect to a different page. Regards, Melinda On Tue, May 22, 2012 at 2:41 AM, Alec Swan wrote: > Hello, > > I use AjaxSubmitLink to submit a form that has captcha. I refresh >

Re: Modal Window without ajaxTarget

2012-05-16 Thread Melinda Dweer
See https://cwiki.apache.org/WICKET/modal-windows.html Opening a modal window on page load (no AJAX involved)Regards. Melinda On Wed, May 16, 2012 at 4:21 PM, toytown wrote: > I would like to show the modal window without using a AjaxRequestTarget > > >add(newAjaxFallbackLink("

Re: ModalWindow parameters

2012-05-01 Thread Melinda Dweer
Have you tried AjaxRequestTarget.get()? If you are in a middle of an AJAX request cycle it should give you the request target. Regards, Melinda. On Tue, May 1, 2012 at 2:51 PM, Brian Mulholland wrote: > I am popping up a modal window when an ajax event fires. The event > has a parameter of wh

Re: FilterForm Date column formatting

2012-04-26 Thread Melinda Dweer
Can't use a conditional statement? If filter add panel if not call super.populateItem? On Thu, Apr 26, 2012 at 11:36 AM, Sandor Feher wrote: > Hi, > > If I do it in this way, then all of my cells in that column will change to > input textfield. But I only want to change the cell which in the fil

Re: FilterForm Date column formatting

2012-04-26 Thread Melinda Dweer
I think the problem is markup for cells is a . You need to create a panel .. Your date file code and add that panel to table cell. Regards, Melinda On Thu, Apr 26, 2012 at 8:48 AM, Sandor Feher wrote: > Hi, > > Yes, sorry for that. > > ---

Re: SSL Links and buttons

2010-10-20 Thread Melinda Dweer
Can you try using E.M.D On Wed, Oct 20, 2010 at 9:05 AM, sonxurxo wrote: > > Hi Igor, thank you for your response. > > I tried what you pointed. The action URL in the form is correctly replaced, > since I can see it with Firebug. And even Wicket receives the request when > pressing the submi

Re: page over HTTP with sign in panel over HTTPs

2010-10-08 Thread Melinda Dweer
on=tag.get("action"); > action=requestutils.toabsoluteurl(action); > action="https"+action.substring(4); > tag.put("action", action); > }} > > -igor > > On Fri, Oct 8, 2010 at 2:44 AM, Melinda Dweer > wrote: > > Hi, > > >

Re: page over HTTP with sign in panel over HTTPs

2010-10-08 Thread Melinda Dweer
sor > > On Fri, Oct 8, 2010 at 11:44 AM, Melinda Dweer >wrote: > > > Hi, > > > > I has the following use case: I have some public pages (should be served > > over HTTP) containing a sign in "panel" which must be submitted over > > HTTPs. > > I

page over HTTP with sign in panel over HTTPs

2010-10-08 Thread Melinda Dweer
Hi, I has the following use case: I have some public pages (should be served over HTTP) containing a sign in "panel" which must be submitted over HTTPs. I have though of doing this as follows: -use an iframe to host the sign in "panel": actually it would be a page served over HTTPs to the iframe