Object in PageParameters

2008-08-21 Thread venky221
How can I pass an object in PageParameters. I am doing like this onSubmit(){ UserVO user = (userVO)getModelObject(); PageParameters params = new PageParameters(); params.put(user,user); setRedirect(true); setResponsePage(ValidateUser.class, params);

Form validation

2008-08-14 Thread venky221
Hi All, Can we use any client side validation of forms in wicket. I searched the archive and at some point Igor said we can't. Another question is, can we plug-in Commons Validator into wicket instead of using wicket's validation, if so some pointers please. Thanks, Venky -- View this message

mountBookmarkablePage is throwing error when using sitemesh

2008-04-30 Thread venky221
Hi All, We are using Sitemesh2.2.1 along with wicket1.3.1 in our product. The sitemesh JSP page contains SCRIPT and LINK tags to include styles and functions that will determine the header and footer for the wicket pages. When I use the URL like http://localhost.../helpDetails?topic=xyz where

input type=text tag is adding background-color attribute while rendering

2008-01-03 Thread venky221
Hi, I am constructing an input text box as input type=text wicketId=abc STYLE=position:absolute; width:120px; height:15px; This markup, I am making available using the getMarkupResourceStream() method. Now the problem is, when the content is rendered, the STYLE element will be appended with

Re: How to flush the markup stream in getMarkupResourceStream() method

2007-12-21 Thread venky221
actually do? (In the mean time I realised the solution to my problem is probably different from vekys, but I assume mine resembles flush more, so dibs on his subject line! :-) ) Gabor Szokoli On Dec 19, 2007 9:26 PM, venky221 [EMAIL PROTECTED] wrote: If I restart my tomcat between the two

How to flush the markup stream in getMarkupResourceStream() method

2007-12-19 Thread venky221
Hi, I am trying to create the markup(generating html) using IMarkupResourceStreamProvider at runtime. The scenario is as follows. I am using a java class called DisplayPage public class DisplayPage extends WebPage implements IMarkupResourceStreamProvider{ String HTMLString=;

How to call the clear() method on MarkupCache class from my webpage

2007-12-19 Thread venky221
Hi, I am trying to clear the markupstream as my markup content will keep changing but the container remains same. How can I get the handle to this MarkupCache class to call the clear() method in my webpage. Thanks, Venky -- View this message in context:

Re: How to create the webpage(html) on the fly

2007-12-05 Thread venky221
files. Once you deploy your application, you don't change those. Instead learn how to use panels and maybe component replacement. Eelco On Dec 4, 2007 4:47 PM, venky221 [EMAIL PROTECTED] wrote: Hi, I am new to wicket. I am working on a small scenario, where in I am trying to change

How to create the webpage(html) on the fly

2007-12-04 Thread venky221
Hi, I am new to wicket. I am working on a small scenario, where in I am trying to change the contents of an html page and navigating to that page while the application is running. The code is as follows . My first page is Demo.html, in which I am adding a simple link element. html body

How to create the webpage(html) on the fly

2007-12-04 Thread venky221
Hi, I am new to wicket. I am working on a small scenario, where in I am trying to change the contents of an html page and navigating to that page while the application is running. The code is as follows . My first page is Demo.html, in which I am adding a simple link element. html body