[Wicket-user] Clueless - Customising Behaviors

2007-07-03 Thread Ballist1c
Hey guys, At the moment I have been looking for ways to modify the existing AjaxSelfUpdatingTimerBehavior, and i am looking to create my own CustomAjaxSelfUpdatingTimerBehavior that continues to count before the next polling without waiting for the response. i dont know where to start or how to

Re: [Wicket-user] Clueless - Customising Behaviors

2007-07-03 Thread Eelco Hillenius
At the moment I have been looking for ways to modify the existing AjaxSelfUpdatingTimerBehavior, and i am looking to create my own CustomAjaxSelfUpdatingTimerBehavior that continues to count before the next polling without waiting for the response. i dont know where to start or how to go

Re: [Wicket-user] Clueless - Customising Behaviors

2007-07-03 Thread Ballist1c
Thanks Eelco! just found the src for the latest beta so I can see how the current AjaxSelfUpdatingTimerBehavior works, ill check out the wicket examples, should be able to pull it apart in no time. Eelco Hillenius wrote: At the moment I have been looking for ways to modify the existing

Re: [Wicket-user] onSubmit() called twice

2007-07-03 Thread David Leangen
Hi, Eelco, I guess I found why this was happening, but somehow this doesn't seem right to me. I had been experimenting with adding this add( new AjaxFormValidatingBehavior( this, onchange ) ); to my RequiredTextField. It never did work for me, but I thought I'd get back to it later. [When

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
Oeh an btw my cell number are 29367684. If you somehow get in trouble finding the address etc.. Flemming Boller wrote: Yes! See you on tuesday. On 6/26/07, *Nino Saturnino Martinez Vazquez Wael* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: the more the better:) So did we

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-07-03 Thread Jean-Baptiste Quenot
* Watter: Most of the time the following holds true when I reach that statement: Session.get().getClass().getClassLoader() = org.apache.wicket.application.ReloadingClassLoader FusionAuthenticatedWebSession.class.getClassLoader() = org.apache.wicket.application.ReloadingClassLoader

Re: [Wicket-user] wicket 1.3 and tomcat 5.5 filterStart severe error?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
ahh, thanks.. Gwyn Evans wrote: On Friday, June 29, 2007, 8:03:08 AM, Nino [EMAIL PROTECTED] wrote: See http://www.nabble.com/remove-test-scope-for-slf4j-in-pom.xml-t3913261.html for background. thanks, now its working.. Thought that dependencies would have been setup... So belived

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-07-03 Thread Martijn Dashorst
I wonder how much spam this will attract :) Martijn -- Wicket joins the Apache Software Foundation as Apache Wicket Apache Wicket 1.3.0-beta2 is released Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta2/

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
doh:( Martijn Dashorst wrote: I wonder how much spam this will attract :) Martijn - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-07-03 Thread Johan Compagner
yes everybody start calling our new phone buddy!! On 7/3/07, Martijn Dashorst [EMAIL PROTECTED] wrote: I wonder how much spam this will attract :) Martijn -- Wicket joins the Apache Software Foundation as Apache Wicket Apache Wicket 1.3.0-beta2 is released Get it now:

[Wicket-user] jWeekend London-based Wicket training course on July 14th/15th

2007-07-03 Thread Al Maw
Hi folks, This is a shameless plug. However, it's an on-topic shameless plug, so hopefully that's fine with everyone. ;-) jWeekend run weekend training courses for people who are too busy to do them during the week. I'm going to be helping run a course on Wicket on the weekend of July

Re: [Wicket-user] onSubmit() called twice

2007-07-03 Thread Johan Compagner
first AjaxFormValidationBehavior doesn't do client side (javascript) validation. it calls the server and does this by submitting the form. so if you change the field where you have this validation on. And then you directly click a submit button yes it will be done twice. first the fields

Re: [Wicket-user] jWeekend London-based Wicket training course on July 14th/15th

2007-07-03 Thread Johan Compagner
hmm a weekend in london! /me checking flights :) On 7/3/07, Al Maw [EMAIL PROTECTED] wrote: Hi folks, This is a shameless plug. However, it's an on-topic shameless plug, so hopefully that's fine with everyone. ;-) jWeekend run weekend training courses for people who are too busy to do them

Re: [Wicket-user] AjaxLink not updating Image

2007-07-03 Thread muffl0n
I am experiencing the same behavior with 1.3.0-beta2. My code: final Image image = new Image(image, gfx/online.gif); Link imageLink = new AjaxFallbackLink(imageToggle) { @Override public void onClick(AjaxRequestTarget target) { image.setModel(new

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-03 Thread Huergo Perez
Hi All, I just grabbed Wicket 1.3.0-beta2 and tried to reproduce this problem. The problem still occurs. I managed to isolate it to a simple use case (see the attachments for Java code and HTML - ZIP attachments get filtered out, so I'm sending the files as is). It looks like it doesn't have

Re: [Wicket-user] Oracle Application Server 10g (10.1.2) and Wicket / ajax

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
Do you have a small example on howto do this? Using the servlet filter does not seem to end up applying the header. No matter where filterchain.do are placed. regards Nino mchack wrote: Another method to do this would be to Override the configureResponse method for the page, at least this

[Wicket-user] CheckBox and final method onComponentTag

2007-07-03 Thread kubino
Hi. We are trying to put some own javascript code in the onClick method of the checkbox component. Unfortunately we need also the wicket code which is generated in onComponentTag method when onSelectionChangeNotifications is true. So I need to execute my javascript code before the wicket's. I

Re: [Wicket-user] CheckBox and final method onComponentTag

2007-07-03 Thread Alex Objelean
Use AttributeAppender behavior instead.. kubino wrote: Hi. We are trying to put some own javascript code in the onClick method of the checkbox component. Unfortunately we need also the wicket code which is generated in onComponentTag method when onSelectionChangeNotifications is true. So

Re: [Wicket-user] CheckBox and final method onComponentTag

2007-07-03 Thread Alex Objelean
Sorry, for quickdirty response :)... You can add AjaxEventBehavior to your checkbox and override getAjaxCallDecorator() method, thus decorating the wicket onclick script with your own script. Alex Objelean wrote: Use AttributeAppender behavior instead.. kubino wrote: Hi. We are

[Wicket-user] [wicket 1.2.6]Listview and item.getModelObject()?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
Hi I have this setup: ListView blockContainer = new ListView(blockContainer, model) { protected void populateItem(ListItem item) { item.getModelObject(); more code... } I've experienced some what I

Re: [Wicket-user] [wicket 1.2.6]Listview and item.getModelObject()?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
Looks like it could be something that could be solved by setting reuseitems to true. But I still dont see why one would ever want to call the ListViews getModel more than once when updating? regards Nino Nino Saturnino Martinez Vazquez Wael wrote: Hi I have this setup: ListView

Re: [Wicket-user] [wicket 1.2.6]Listview and item.getModelObject()?

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
Hmm this just seems to make the Listview call the getModel list.size times before running the populateItem method. regards Nino Nino Saturnino Martinez Vazquez Wael wrote: Looks like it could be something that could be solved by setting reuseitems to true. But I still dont see why one would

[Wicket-user] add class onlclick

2007-07-03 Thread Pieter Cogghe
If some link is clicked, I want to change the css-class of a label like this: // text final Label text = new Label(text, resourceRecord.getText()); add(text) // edit link add(new AjaxFallbackLink(edit-link){ @Override public void onClick(AjaxRequestTarget target) { // dome some

Re: [Wicket-user] BookmarkablePageLink relative path Dilemma

2007-07-03 Thread Frank Bille
You can do that by mapping the WicketFilter to the /* context and then mount the pages with some url strategies (like IndexedParamUrlCodingStrategy). You then don't need that /app/* and you can proxy the requests in a one-to-one. Frank On 7/2/07, Chris Lintz [EMAIL PROTECTED] wrote: Hey all,

Re: [Wicket-user] add class onlclick

2007-07-03 Thread Nino Saturnino Martinez Vazquez Wael
I think it might have something todo with the fact that you are adding the attributemodifier in the ajax call? So each time you get the call you add another modifier, it would be better to add to modifier once and then change its model instead... regards Nino Pieter Cogghe wrote: If some

Re: [Wicket-user] Using hot-reloading of classes with Spring (Was: Has something changed in markup inheritance?)

2007-07-03 Thread Watter
Jean-Baptiste Quenot-3 wrote: * Watter: Most of the time the following holds true when I reach that statement: Session.get().getClass().getClassLoader() = org.apache.wicket.application.ReloadingClassLoader FusionAuthenticatedWebSession.class.getClassLoader() =

Re: [Wicket-user] add class onlclick

2007-07-03 Thread Alex Objelean
First of all you must setOutputMarkupId to true for the text component: text.setOutputMarkupId(true); Also, you are modifying the id attribute, and not the css... this is also a problem so instead of: text.add(new SimpleAttributeModifier(id,test)); do this: text.add(new

Re: [Wicket-user] How to get HTML source code from a wicket page

2007-07-03 Thread Jean-Baptiste Quenot
* Jeremy Thomerson: I hope someone can give me a hand. I'm trying to do something similar, and seemingly stumped. I have a form that I want to have the user fill out, and then I just want to email the completed form to someone on our team. So, I created subclasses of form components that

Re: [Wicket-user] Use getConverterInput rather than updateModel in FormComponentPanel

2007-07-03 Thread Johan Compagner
by the way this is a bit more dangerous now: protected void convertInput() { setConvertedInput(dateField.getConvertedInput()); } this goes ok because we visit child post order. and because dateField is a child it works But getConvertedInput and convertInput() are called in

[Wicket-user] double trouble

2007-07-03 Thread Florian Hehlen
hi, I am having a couple of problems with doubles. 1. when I hand a double into a TextField the value is often rounded. Is there a way to make sure this does not happen? 2. i would like to validate an entry so that it has a maximum of x digits after the decimal. Is there some functionality

[Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
I already have several Wicket applications deployed, some that don't require a session (all extranet - non-signin, bookmarkable url stuff), and one large one that uses the session extensively. Now, I just deployed a site last night for testing that is a backend administration site, which

[Wicket-user] Contents of Wicket-user digest...

2007-07-03 Thread Afsaneh Abouie
Contents of Wicket-user digest... - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now.

Re: [Wicket-user] add class onlclick

2007-07-03 Thread Pieter Cogghe
I just tried to modify the id to see if the worked, I'm sorry for the confusion. @Nino I think you might be right, but I couldn't get it to work. (I changed it to modifying the style attribute, just to quick test visually.) My modified code: // text final Label text = new Label(text,

Re: [Wicket-user] add class onlclick

2007-07-03 Thread Alex Objelean
You forgot again to call text.setOutputMarkupId(true); This is an important method to make components ajax aware.. yuccaplant wrote: I just tried to modify the id to see if the worked, I'm sorry for the confusion. @Nino I think you might be right, but I couldn't get it to work. (I

[Wicket-user] Jeff Pierce is out of the office.

2007-07-03 Thread Jeff G Pierce
I will be out of the office starting 07/03/2007 and will not return until 07/09/2007. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML.

[Wicket-user] Filterable DefaultDatatable

2007-07-03 Thread Ox
Hello, I'm trying do display a simple Data Table with a filter on it. I had a look at the wicket-phonebook example because what I have to do is really similar to that example. So I will refer to the code of this example to describe my problem. The thing is I want to have some filter on the

Re: [Wicket-user] Use getConverterInput rather than updateModel in FormComponentPanel

2007-07-03 Thread Eelco Hillenius
by the way this is a bit more dangerous now: protected void convertInput() { setConvertedInput(dateField.getConvertedInput()); } this goes ok because we visit child post order. and because dateField is a child it works But getConvertedInput and convertInput() are

Re: [Wicket-user] AjaxLink not updating Image

2007-07-03 Thread Eelco Hillenius
I am experiencing the same behavior with 1.3.0-beta2. My code: final Image image = new Image(image, gfx/online.gif); Link imageLink = new AjaxFallbackLink(imageToggle) { @Override public void onClick(AjaxRequestTarget target) { image.setModel(new

Re: [Wicket-user] double trouble

2007-07-03 Thread Eelco Hillenius
I am having a couple of problems with doubles. 1. when I hand a double into a TextField the value is often rounded. Is there a way to make sure this does not happen? Did you set the type to double? new TextField(foo, model, Double.class); 2. i would like to validate an entry so that it has

[Wicket-user] help needed with creation of image Link component

2007-07-03 Thread Erik Dreyer
I'm trying to create a link component that will produce output similar to the following: a href=link/to/somewhereimg src=imgA onmousedown=this.src='imgB'; onmouseup=this.src='imgA';/a where: 1) The link handler (onClick) is defined by users of the component 2) The two images are provided in the

Re: [Wicket-user] Redirect form to a request target rather than a page?

2007-07-03 Thread Igor Vaynberg
On 7/2/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: I know you can do this somehow - I just can't tell what's missing In a search form that I have, I do the following: getRequestCycle().setRequestTarget(new ListenerInterfaceRequestTarget(getPage(), new SearchQueryLink(foo,

Re: [Wicket-user] suggestion: have Wicket SVN searchable with FishEye

2007-07-03 Thread Igor Vaynberg
On 7/2/07, Eelco Hillenius [EMAIL PROTECTED] wrote: However, I still would not support setting up Fisheye against an Apache SVN without infrastructure's support as they are the ones that would have to pick up the pieces if it were to go wrong. Yeah, that's fair enough :) since we are

Re: [Wicket-user] onSubmit() called twice

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Johan Compagner [EMAIL PROTECTED] wrote: first AjaxFormValidationBehavior doesn't do client side (javascript) validation. it calls the server and does this by submitting the form. so if you change the field where you have this validation on. And then you directly click a submit

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Huergo Perez [EMAIL PROTECTED] wrote: Hi All, I just grabbed Wicket 1.3.0-beta2 and tried to reproduce this problem. The problem still occurs. I managed to isolate it to a simple use case (see the attachments for Java code and HTML - ZIP attachments get filtered out, so I'm

Re: [Wicket-user] [wicket 1.2.6]Listview and item.getModelObject()?

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hi I have this setup: ListView blockContainer = new ListView(blockContainer, model) { protected void populateItem(ListItem item) { item.getModelObject();

Re: [Wicket-user] jsessionid and page expired

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: I already have several Wicket applications deployed, some that don't require a session (all extranet - non-signin, bookmarkable url stuff), and one large one that uses the session extensively. Now, I just deployed a site last night for

Re: [Wicket-user] help needed with creation of image Link component

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Erik Dreyer [EMAIL PROTECTED] wrote: I'm trying to create a link component that will produce output similar to the following: a href=link/to/somewhereimg src=imgA onmousedown=this.src='imgB'; onmouseup= this.src='imgA';/a where: 1) The link handler (onClick) is defined by users of

[Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Watter
Are there any rules about a company posting to this list about potential open positions around Wicket? Matt -- View this message in context: http://www.nabble.com/Wicket-mailing-list-rules-with-regards-to-jobs-tf4019684.html#a11416655 Sent from the Wicket - User mailing list archive at

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Watter [EMAIL PROTECTED] wrote: Are there any rules about a company posting to this list about potential open positions around Wicket? go for it -igor Matt -- View this message in context:

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Matej Knopp
Hi Matt, as far as I know there are no strict rules. Basically, if the position involves Wicket, nobody objects against such posts. -Matej On 7/3/07, Watter [EMAIL PROTECTED] wrote: Are there any rules about a company posting to this list about potential open positions around Wicket? Matt

Re: [Wicket-user] add class onlclick

2007-07-03 Thread Pieter Cogghe
Super it works. Thanks. I thought you said that because I wrote id instead of class. I didn't see the connection. I did some Ajax related things before without setting outPutMarkU... . Either way it works. 2007/7/3, Alex Objelean [EMAIL PROTECTED]: You forgot again to call

Re: [Wicket-user] Filterable DefaultDatatable

2007-07-03 Thread Igor Vaynberg
you dont need to do anything in onsubmit, it will automatically reload the current page unless you call setresponsepage to another one. if the values are not sticking after submit that means they are not saved properly, you might want to look at your models. -igor On 7/3/07, Ox [EMAIL

Re: [Wicket-user] Use getConverterInput rather than updateModel in FormComponentPanel

2007-07-03 Thread Johan Compagner
protected Object convertInput() { return dateField.convertInput(); } but that will mean that it will call twice convert intput on the inner date field. johan On 7/3/07, Eelco Hillenius [EMAIL PROTECTED] wrote: by the way this is a bit more dangerous now: protected void

Re: [Wicket-user] onSubmit() called twice

2007-07-03 Thread Johan Compagner
you can use onchange but then you don't have to have a submit button because after every change your form is submitted. On 7/3/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/3/07, Johan Compagner [EMAIL PROTECTED] wrote: first AjaxFormValidationBehavior doesn't do client side (javascript)

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Martijn Dashorst
On 7/3/07, Matej Knopp [EMAIL PROTECTED] wrote: Hi Matt, as far as I know there are no strict rules. Basically, if the position involves Wicket, nobody objects against such posts. Specifically targets Wicket developers to be more exact. No general catch all 'Wicket, Tapestry, JSF, Struts,

[Wicket-user] Split pane / scroll pane components

2007-07-03 Thread Arseniy
Hi! Are there any split pane and scroll pane components in wicket (core, extensions,...)? I need them for my app. If there are none of those, could anyone suggest me some example JS code to base them on? Thanks a lot, Arseniy Sizov

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Wilko Hische
Well if that's the case I am happy to invite any Wicket adept living near Amsterdam or willing to move there to have a look at the job opening at our company :-) http://www.feeddex.nl/vacatures.html Cheers, Wilko Hische Martijn Dashorst wrote: On 7/3/07, Matej Knopp [EMAIL

Re: [Wicket-user] Split pane / scroll pane components

2007-07-03 Thread Nathan Beach
Arseniy: I've had a lot of luck with the ExtJS SplitBar combined with Wicket (and it looks so cool): http://extjs.com/deploy/ext/docs/output/Ext.SplitBar.html Nathan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arseniy Sent: Tuesday, July 03, 2007

Re: [Wicket-user] help needed with creation of image Link component

2007-07-03 Thread Erik Dreyer
Ahh. I assumed that if you subclassed a Panel, you had to provide your own markup for that subclass. I didn't realize that if the subclassed panel does not provide its own markup that it uses the markup from the parent. Very nice feature. Thx! On 7/3/07, Igor Vaynberg [EMAIL PROTECTED] wrote:

Re: [Wicket-user] wicket-based dashboard

2007-07-03 Thread Nathan Beach
With some simple changes to ModalWindow, I'm able to get the basics to work (see attached gif). Just turned off the masking, added x and yOffsets, and altered the loadPosition function to take settings parameters rather than loading from a cookie. There's still a lot of work left to make an

Re: [Wicket-user] Split pane / scroll pane components

2007-07-03 Thread Arseniy
Thanks!:) Arseniy: I've had a lot of luck with the ExtJS SplitBar combined with Wicket (and it looks so cool): http://extjs.com/deploy/ext/docs/output/Ext.SplitBar.html Nathan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Arseniy Sent:

Re: [Wicket-user] wicket-based dashboard

2007-07-03 Thread Francisco Diaz Trepat - gmail
That looks pretty good. On 7/3/07, Nathan Beach [EMAIL PROTECTED] wrote: With some simple changes to ModalWindow, I'm able to get the basics to work (see attached gif). Just turned off the masking, added x and yOffsets, and altered the loadPosition function to take settings parameters rather

[Wicket-user] Can I get a 'Nice URL' when form validation fails?

2007-07-03 Thread Philip Wilkinson
Hi, When my form validation fails, the page is redisplayed with the default url with all its wicket:interface stuff. I'd rather this didn't happen as I've bookmarked the page, and would prefer to have the bookmarked url redisplayed. (the bookmarked url was initially displayed for the page) I've

Re: [Wicket-user] wicket-based dashboard

2007-07-03 Thread Matej Knopp
You're welcome :) -Matej On 7/3/07, Nathan Beach [EMAIL PROTECTED] wrote: With some simple changes to ModalWindow, I'm able to get the basics to work (see attached gif). Just turned off the masking, added x and yOffsets, and altered the loadPosition function to take settings parameters

Re: [Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
Okay - you helped me shed some good light on this... Was there a change to the way the cookies are set in 1.3? Or is the following possibly a configuration issue? Going through Apache: http://admin.theatdgroup.com/app/signin, I get the following set-cookie header -

Re: [Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
I found it - need to use ProxyPassReverseCookiePath, which means I also need to upgrade to Apache 2.2 (I'm on 2.0.51). Thanks Igor!! Jeremy On 7/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: Okay - you helped me shed some good light on this... Was there a change to the way the cookies are

[Wicket-user] Wicket ModalWindow, MaskType and opacity

2007-07-03 Thread Sean Sullivan
Hello, I am using a Wicket 1.3.0 SNAPSHOT from the trunk. In the ModalWindow class, there are two masks available: MaskType.TRANSPARENT MaskType.SEMI-TRANSPARENT (10% opacity) Is there a way for me to have finer control of the degree of opacity? I'd love to be able to control it

Re: [Wicket-user] Wicket with JExcel

2007-07-03 Thread Ayodeji Aladejebi
meanwhile for the AjaxExcelGirdPanel, you have to click on the cell labels to edit them and you will require wicket-extensions along with the wicket jar to make it work regards On 7/4/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: hmm..i have been busy but i worked a quick fix for you it is

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread Jonathan Locke
if it's specifically about wicket, posting is encouraged. Watter wrote: Are there any rules about a company posting to this list about potential open positions around Wicket? Matt -- View this message in context:

[Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Tauren Mills
I need to allow users to rate things on a site, but as far as I can tell, none of the star rating controls I've seen do everything I want. I'd like the following: 1. Should have CSS or Javascript rollover support to highlight stars as mouse rolls over them. 2. Must be able to fallback to

[Wicket-user] Why wicket-phonebook 1.3 doesn't reload and run in glassfish?

2007-07-03 Thread Lec
I have been trying to figure out a reason as to why wicket-phonebook 1.3 couldn't be executed anymore after reloading in glassfish but it can be done in tomcat 5.x...I could reload it in glassfish without seeing error on the glassfish console, but if i type the URL pointing to the

Re: [Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-03 Thread kenixwong
Sorry, cant get u.. can you show me the some partial code ? My tree example was refer from the wicket example. but it only shown how to create a tree without some example to click the node and redirect to another page. I had tried search from the forum and do testing... still failed. Can

Re: [Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Jeremy Thomerson
I implemented one on our site (see example at: http://www.texashuntfish.com/thf/app/journals/1089/Boone-Crockett-26th-Big-Game-Awards-2004-2006-Entries- ). It's pretty straight-forward. Do you require that it is a form submission? (i.e. - is it nested in another form, and the whole form must be

Re: [Wicket-user] How do I change the look and feel of a wicket tree component?

2007-07-03 Thread kenixwong
hi, saad can you share me with your code (tree) created ? Maybe i am new to the wicket. As My tree example was refer from the wicket example. but it only shown how to create a tree without some example to click the node and redirect to another page. I had tried search from the forum and do

Re: [Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Tauren Mills
Thanks for the ideas, Jeremy. For my application, users will be rating services and will fill out a form that includes several text fields, a textarea, a dropdown, and so forth. They need to rate this service based on multiple criteria with a star-rating control for each criteria. I want

Re: [Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Igor Vaynberg
On 7/3/07, Tauren Mills [EMAIL PROTECTED] wrote: The Wicket rating control doesn't include the mouse rollover support: http://wicketstuff.org/wicket13/ajax/?wicket:bookmarkablePage=%3Aorg.apache.wicket.examples.ajax.builtin.RatingsPage Before I go and start creating yet another star rating

[Wicket-user] DatePicker broken on beta2 and snapshot?

2007-07-03 Thread oliver.henlich
Hi. Just noticed that the DatePicker in my Form no longer works. The wicket form examples page also does not work: http://wicketstuff.org/wicket13/forminput/ I am using beta2. Wicketstuff is using 1.3.0-incubating-SNAPSHOT i think. Tried in FireFox 2, Opera 9.21, IE 6. Snippet of code:

Re: [Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Tauren Mills
Igor, Of course my preference would be to do exactly that -- improve the wicket-extensions rating control and give it back to the community. However, it is missing several features that I need, including the javascript rollover feature as well as not supporting fallback to html. Of course I

Re: [Wicket-user] Can I get a 'Nice URL' when form validation fails?

2007-07-03 Thread David Leangen
Philip, You need to also include all your form values in the PageParamters, and parse those values in your page, filling each of the fields with those values. Does that make sense? So, your url would be something like: /myPage?field1=blahcheckbox1=true... Cheers, Dave On Tue,

Re: [Wicket-user] Wicket mailing list rules with regards to jobs

2007-07-03 Thread David Leangen
In that case... Is anybody on this list, living in the Kansai area in Japan, available for purely Wicket development? We're looking for somebody who can work on-site if possible. Japanese language skills would be a great asset. :-) On Tue, 2007-07-03 at 21:06 +0200, Martijn Dashorst wrote:

Re: [Wicket-user] onSubmit() called twice

2007-07-03 Thread David Leangen
Ok, thanks for this info! I'll have to look into Ajax behaviours in more detail at some point. It all looks really well done and very useful, but I think there's more to it than I originally thought. Cheers, Dave On Tue, 2007-07-03 at 19:40 +0200, Johan Compagner wrote: you can use

Re: [Wicket-user] Wicket with JExcel

2007-07-03 Thread Edi
Thank you so much for your kind reply. I have installed source. It's working fine. I have one doubt. If the empty field occurs, you have set the string Not Set. That's fine. 1. How can I change the empty field box style in Red color. It's easy to Identify. Because XL file may contains lot of

Re: [Wicket-user] Wicket with JExcel

2007-07-03 Thread Edi
In xls one field contains more than 20 characters. When I upload that xls, initially it shows the data only not in red color box. But when I click the box only it shows red color. How can I show in red color when load the document. Ayodeji Aladejebi wrote: meanwhile for the

Re: [Wicket-user] DatePicker broken on beta2 and snapshot?

2007-07-03 Thread Eelco Hillenius
Just noticed that the DatePicker in my Form no longer works. The wicket form examples page also does not work: http://wicketstuff.org/wicket13/forminput/ Yeah, this is fixed in example's trunk (it's actually removed from that example), but there is no ultimate solution for this. The problem

Re: [Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-03 Thread Eelco Hillenius
Sorry, cant get u.. can you show me the some partial code ? My tree example was refer from the wicket example. but it only shown how to create a tree without some example to click the node and redirect to another page. I had tried search from the forum and do testing... still failed. Can

Re: [Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-03 Thread kenixwong
thx for reply... i waiting and waiting somebody to reply it.. :p sorry for understood.. i m not just play around. i wish to build a new module for my current project. And i wish to manage all the menus in a tree style outlook. So, can i get some guide frou u , Eelco .. thx a lot Eelco

Re: [Wicket-user] Tree - override onNodeLinkClicked(...)?

2007-07-03 Thread Eelco Hillenius
sorry for understood.. i m not just play around. i wish to build a new module for my current project. And i wish to manage all the menus in a tree style outlook. So, can i get some guide frou u , Eelco .. If you are looking for menus, why not use something like this:

[Wicket-user] 401 HTTP authentication?

2007-07-03 Thread Jesse Barnum
What is the right way to use basic HTTP authentication? I know how to read the headers to extract the username and password, but if they don't match, or if they're not supplied, what is the best way to send the 401 response to the user? It seems like the