where to find SpringComponentInjector class

2009-01-06 Thread rjilani
Hi: can some one tell me which jars holds the class SpringComponentInjector. It doesn't look like the part of the core (I am using netbeans id that has pre-installed wicket jars). I also appreciate if some one tell me the url from where I can download the jar containing SpringComponentInjector.

addComponentInstantiationListener method

2009-01-06 Thread rjilani
Hi: I am using the following code from wicket wiki to add a Springcomponent injector to addComponentInstantiationListener to hook spring application context, but the code is not compiling. addComponentInstantiationListener(new SpringComponentInjector(this, ctx)); When I dug further I found

where to find javadoc for wikcet 1.4

2009-01-13 Thread rjilani
Can some one point me where to find the javadoc for wicket 1.4, it is very confusing/frustrating working with release 1.4 and keep looking for the Javadoc at wicket side that belongs to version 1.3.2. Thanks, Rashid. -- View this message in context:

which jars holds the DatePicker class

2009-01-21 Thread rjilani
Hi: I am using wicker 1.4 rc1, with following libs wicket-extensions-1.4-rc1.jar, wicket-datetime-1.4-rc1.jar, but now where in my jar I found the DatePicker class that supposed to be in the package org.apache.wicket.extensions.yui.calendar.DatePicker. Can some one tell me where is the jar that

Re: which jars holds the DatePicker class

2009-01-21 Thread rjilani
Thanks newgro for the help, I was not finding the DatePicker class while coding. I think Wicket is an awesome framework but there are room for improvments to document some of the dependencies more precisely, becuase you know not every one is using Maven. Best Regards, RJ. Newgro wrote:

sepearte stylesheet refrences for page and panel

2009-02-18 Thread rjilani
Hi: Gurus, I am attaching two separate style sheets one for a page and one for the panel. I am attaching the style sheets in my Java code like this add(new StyleSheetReference(stylesheet, PBNASLogin.class, login.css)); //in page constructor add(new StyleSheetReference(stylesheetPanel,

Re: sepearte stylesheet refrences for page and panel

2009-02-19 Thread rjilani
and components will not work because they will not be able to contribute their JS or CSS to the head. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Feb 18, 2009 at 4:05 PM, rjilani jil...@lifebiosystems.com wrote: Thanks Jeremy for your suggestions. You were right the wicket

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread rjilani
Would you please make sure what version of Java are you using. Annotaions are only supported from version 1.5 and forward. Regards, RJ. nicgould wrote: Hi there, I set up a wicket 1.3.5 project using the quickstart instructions from wicket.apache.org. I successfully got the test page up

Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
Hi: Gurus I am trying to make an invisible panel visible via Ajax link, but got stuck at a point where I don't know how to proceed further. Please see the code snipet below final RegisteredUserPanel registeredUserPanel = new RegisteredUserPanel(registrationPanel);

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
)); then in the onclick stuff registeredUserPanel.setVisible(true); target.addComponent(div); that should do the trick hth, michael rjilani wrote: Hi: Gurus I am trying to make an invisible panel visible via Ajax link, but got stuck at a point where I don't know how to proceed further

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
Thanks Martijn it was cute:-) next time I remember it. BTW my Kudos to you for writing such an awesome book on Wicket. Really good work. Best Regards, RJ. Martijn Dashorst wrote: http://tinyurl.com/dmhfub On Thu, Feb 19, 2009 at 5:14 PM, rjilani jil...@lifebiosystems.com wrote: Hi

No get method defined for class error

2009-02-20 Thread rjilani
Hi: guys I am getting No get method defined for class RegisteredUser expression: countryList when I try to execute this code registeredUser = new RegisteredUser(); Address address = new Address(); registeredUser.setAddress(address); model = new

Is this a bug in Wicket?

2009-03-05 Thread rjilani
Hi: Gurus, I am trying to render a form and looks like wicket is not rendering the form elements in right sequence, here is my markup that is having the issues tr tdSearch feed by name:/td tdinput type=text

Re: Is this a bug in Wicket?

2009-03-05 Thread rjilani
conditions input type=radio / Match all news /td /tr rjilani wrote: Hi: Gurus, I am trying to render a form and looks like wicket is not rendering