Javadoc?

2008-01-11 Thread Ayodeji Aladejebi
The javadoc does not come with the wicket 1.3 bundle. Where can the javadoc for all the wicket1.3 builds be found?

Re: How can I validate required formComponents after page load?

2008-01-11 Thread thomas jaeckle
igor.vaynberg wrote: onbeforerender { textfield.error(RequiredValidator.class.getSimpleName()); } -igor Thanks igor. Now it is working fine with: protected void onBeforeRender() { super.onBeforeRender(); visitChildren(FormComponent.class, new IVisitor() { public Object

Re: Javadoc?

2008-01-11 Thread Artur W.
Ayodeji Aladejebi wrote: The javadoc does not come with the wicket 1.3 bundle. Where can the javadoc for all the wicket1.3 builds be found? You can generate it from the source: mvn javadoc:javadoc Artur -- View this message in context:

Re: Flash and Modal Window

2008-01-11 Thread Roy van Rijn
Ok, I created an example project and uploaded it. Could somebody please take a look at this... its probably something dead simple, I just can't find it. Again, Firefox works fine, IE is the problem.. The code can be found here: http://www.redcode.nl/ExampleFlashModal.zip If you have questions,

Re: Javadoc?

2008-01-11 Thread Ayodeji Aladejebi
thanks, i have already done dat with NB fastastic maven support On 1/11/08, Artur W. [EMAIL PROTECTED] wrote: Ayodeji Aladejebi wrote: The javadoc does not come with the wicket 1.3 bundle. Where can the javadoc for all the wicket1.3 builds be found? You can generate it from the

WebRequestCycle settings per request possible?

2008-01-11 Thread blueneogeo
Hello, I would like to be able to set different webrequestcycle settings per WebPage (besides per Application). So for example different buffering policy per page or different response filters per request. Is this possible in wicket, or will it likely be? Cheers, Christian -- View this

Re: Flash and Modal Window

2008-01-11 Thread Roy van Rijn
Martijn suggested on IRC to change the modalwindow to Page instead of Panel. This seems to do the trick... The behavior with Panel is still very strange though, can't explain it. On 1/11/08, Roy van Rijn [EMAIL PROTECTED] wrote: Ok, I created an example project and uploaded it. Could somebody

Adding breadcrumbs

2008-01-11 Thread WickedMan
I want to add breadcrumbs to my Wicket Web Application. It has a Page called BasePage (extends WebPage) which all other pages extend. The navigation links are in the BasePage. In addition panels are used inside the other pages for speicific content. Is it possible to add breadcrumbing to my

Open new page after submit a form

2008-01-11 Thread Newgro
Hi *, i have a wicket page with a form and some other components. On click on a button i want to submit the form and go to another page of my application. The problem i have is that the form has to be send to an external script, which i canĀ“t change. This script opens a new page (not of my

Re: Adding breadcrumbs

2008-01-11 Thread Alan Romaniuc
have you tried breadcrumb example from http://www.wicket-library.com/wicket-examples/ ? Can it be helpful? WickedMan escreveu: I want to add breadcrumbs to my Wicket Web Application. It has a Page called BasePage (extends WebPage) which all other pages extend. The navigation links are in

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Ryan Sonnek
On Jan 11, 2008 9:08 AM, Edward Yakop [EMAIL PROTECTED] wrote: On Jan 11, 2008 11:04 PM, Ryan Sonnek [EMAIL PROTECTED] wrote: I don't care if it can be optomized if it introduces more complexity. How often are people drag/dropping objects on webpages anyways? There isn't a need to support

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Ryan Sonnek
I don't care if it can be optomized if it introduces more complexity. How often are people drag/dropping objects on webpages anyways? There isn't a need to support 100,000 operations per second for this kind of operation. Looping over components in a page is blazing fast unless you have

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Edward Yakop
On Jan 11, 2008 10:59 PM, Ryan Sonnek [EMAIL PROTECTED] wrote: The committed code has improved JavascriptBuilder#formatJavascriptValue to support array, set and list value. I didn't know about these changes. I'll try and take a look and see if I can reuse the code. Do you have unit

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Edward Yakop
On Jan 11, 2008 11:04 PM, Ryan Sonnek [EMAIL PROTECTED] wrote: I don't care if it can be optomized if it introduces more complexity. How often are people drag/dropping objects on webpages anyways? There isn't a need to support 100,000 operations per second for this kind of operation. Looping

Re: WicketServlet vs. WicketFilter

2008-01-11 Thread Maris Orbidans
also wicket filter is much better at handling /* mapping The only problem with this mapping is that filter is invoked for all requests that fetch static web resources (css, images, etc). I may be wrong but I don't think it's good for performance. Especially if you use some other filter,

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Edward Yakop
It's not the code for finding the component that bothers me. as you said, it's very easy. My problem is that now you have to muck with the scriptaculous javascript callback to extract the component path instead of just using the default behavior which is to transfer the markup id. This

RE: calling javascript function on wicket component's onclick

2008-01-11 Thread Hoover, William
Add/Edit if necessary http://cwiki.apache.org/confluence/x/siEB -Original Message- From: Gerolf Seitz [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 8:26 AM To: users@wicket.apache.org Subject: Re: calling javascript function on wicket component's onclick something like:

wrong properties displayed

2008-01-11 Thread Michael Sparer
Hi, On a WebPage, I'm using a TabbedPanel containing different implementations of MyAbstractPanel. MyAbstractPanel.html contains a wicket:message key=headline/wicket:message. Now I want a different headline for each of my implementations of MyAbstractPanel. So I made a properties file for

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Ryan Sonnek
On Jan 10, 2008 10:10 PM, Edward Yakop [EMAIL PROTECTED] wrote: On Jan 11, 2008 11:51 AM, Ryan Sonnek [EMAIL PROTECTED] wrote: if there are other improvements to be made, let me know! How about committing the [DraggableTargetBehavior] and its support for multiple drag source type. Not sure

Re: Adding breadcrumbs

2008-01-11 Thread Eelco Hillenius
Hello Alan, yes, I know that example. But as I wrote I'm not using Panels but Pages. And I don't understand that example very well anyway. Maybe a simpler example would help. It depends on what you think are breadcrumbs. The breadcrumbs component in wicket-extensions (which is used in that

Re: FormComponentPanel and setConvertedInput()

2008-01-11 Thread Igor Vaynberg
first you should implement convertintput() not setconvertedinput(). inside your impl of convertinput() you should call setconvertedinput() with the right value. this is indeed important as the converted input is what is passed into validators. so if you need your panel to support validators you

Re: Dont refresh webpage on Form Submit

2008-01-11 Thread Haritha Juturu
hi igor, all i had posted earlier about trying to upload a file using AjaxFormSubmitBehavior . but you responded saying that file uploads using ajax are not supported. The issue i have is that, i have a form where i upload a file. i dont want the page to refresh after the upload (which happens

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Ryan Sonnek
On Jan 11, 2008 9:37 AM, Edward Yakop [EMAIL PROTECTED] wrote: It's not the code for finding the component that bothers me. as you said, it's very easy. My problem is that now you have to muck with the scriptaculous javascript callback to extract the component path instead of just using

How do I call my javascript after each wicket partial update?

2008-01-11 Thread bmarvell
I'd like to be able to run a piece of javascript after each wicket ajax update. Is this possible without hacking the source and if so how? Thanks :) -- View this message in context: http://www.nabble.com/How-do-I-call-my-javascript-after-each-wicket-partial-update--tp14759508p14759508.html

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread bmarvell
Ok you get the brucey bonus as this is exactly what I was after :D Thanks S much Ben Gerolf Seitz wrote: sorry, sent the mail too fast earlier. if you want to execute a certain piece of js code after *every* (successful) ajax update, you can use the following js code:

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread wicket user
try AjaxRequestTarget.addJavascript(yourJavascript) Regards On Jan 11, 2008 4:00 PM, bmarvell [EMAIL PROTECTED] wrote: I'd like to be able to run a piece of javascript after each wicket ajax update. Is this possible without hacking the source and if so how? Thanks :) -- View this message

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread Gerolf Seitz
see the recent thread calling javascript function on wicket component's onclick gerolfOn Jan 11, 2008 5:00 PM, bmarvell [EMAIL PROTECTED] wrote: I'd like to be able to run a piece of javascript after each wicket ajax update. Is this possible without hacking the source and if so how?

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread Gerolf Seitz
sorry, sent the mail too fast earlier. if you want to execute a certain piece of js code after *every* (successful) ajax update, you can use the following js code: wicketGlobalPostCallHandler = function { alert('successful partial update'); } as wicket user already said, you can also add

FormComponentPanel and setConvertedInput()

2008-01-11 Thread smallufo
Hi , I am evaluating FormComponentPanel . I looked into the document , it seems setConvertedInput() is the proper way . I use another method , which skips the setConvertedInput() , I don't know if it is suggested : Here is the code : public class TimePanel extends FormComponentPanel { private

Status on Templating

2008-01-11 Thread oliverw
I'm currently using something like the HTML below as base page template for my project. Which boils down to the one supported child section and three panels for header, footer and navigation. Now I'm wondering what's the current post-1.3 release stance on templating for Wicket is. A while ago

Re: WicketServlet vs. WicketFilter

2008-01-11 Thread Joshua Jackson
I think it's Websphere: http://joshuajava.wordpress.com/2007/11/12/my-first-impression-about-wicket/ On 1/11/08, Gwyn Evans [EMAIL PROTECTED] wrote: On 10/01/2008, Igor Vaynberg [EMAIL PROTECTED] wrote: example weblogic has pretty broken filter support, Wasn't that Websphere rather than

Re: Wickettester and session?

2008-01-11 Thread Igor Vaynberg
not sure where to point you... -igor On Jan 11, 2008 9:46 AM, cricdigs [EMAIL PROTECTED] wrote: Ah that did the trick Igor! Thank you so much! I am still having some issues getting to child components. Can you point me in the right direction there? Thanks again! igor.vaynberg wrote:

Re: wrong properties displayed

2008-01-11 Thread Igor Vaynberg
please provide a quickstart and open a jira issue. -igor On Jan 11, 2008 4:30 AM, Michael Sparer [EMAIL PROTECTED] wrote: Hi, On a WebPage, I'm using a TabbedPanel containing different implementations of MyAbstractPanel. MyAbstractPanel.html contains a wicket:message

Re: WicketServlet vs. WicketFilter

2008-01-11 Thread Igor Vaynberg
yes there is some overhead. but it is much better then the servlet. the filter can let the resource fall through and be served by the servlet cotainer. if you use a servlet then the servlet itself has to stream the resource out. guess which will have a more optimized implementation... -igor On

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Ryan Sonnek
don't see this as a very strong usecase. Most usecases will have some kind of placeholder text instructing the user to drop objects on it. Does this work for you? I tried div, span and your example. Neither work for firefox 2.0 and 1.5 (I haven't test it on another browser). The only way

RE: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Clay Lehman
Is this project no longer going to support jdk 1.4? I was using a build from Sept. '07 from http://wicketstuff.org/maven/repository/org/wicketstuff/wicketstuff-scri ptaculous/ and it worked fine, but I just tried a build from January '08 and it was compiled with java 5, so I can't use it

Supported browsers on Wiki still up to date?

2008-01-11 Thread Erik van Oosten
Hi, The list of supported browsers on http://cwiki.apache.org/WICKET/faqs.html#FAQs-WhichbrowsershavebeentestedwithWicketAJAX%253F looks a bit out dated. Could someone please update it for Wicket 1.3? If you have a pointer to more up to date information, I can update it myself. Regards,

Re: FormComponentPanel and setConvertedInput()

2008-01-11 Thread Michael Sparer
Yep that's right, in your case (if the class stays like that) you can skip convertInput. I happened to have a similar situation today. But I also had the situation where one value gets passed to the form component and there it gets splitted to two textfields and concatinated afterwards. as igor

Re: Adding breadcrumbs

2008-01-11 Thread WickedMan
Could you give me code examples how to do that? Eelco Hillenius wrote: Hello Alan, yes, I know that example. But as I wrote I'm not using Panels but Pages. And I don't understand that example very well anyway. Maybe a simpler example would help. It depends on what you think are

Re: Adding breadcrumbs

2008-01-11 Thread Eelco Hillenius
Could you give me code examples how to do that? Not without having to spend a couple of hours on it, and I'm afraid I don't have time for that now, sorry. Best rest assured, it is doable... just fire up that grey matter of yours ;-) Eelco

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Edward Yakop
On Jan 12, 2008 12:50 AM, Ryan Sonnek [EMAIL PROTECTED] wrote: I didn't mean you changed scriptaculoius. i meant that you really customized the rendered *scriptaculous javascript*. I've seen the sourcecode and remain unconvinced that this is simpler than using the markup ID. I'll leave this

Re: Wickettester and session?

2008-01-11 Thread cricdigs
Ah that did the trick Igor! Thank you so much! I am still having some issues getting to child components. Can you point me in the right direction there? Thanks again! igor.vaynberg wrote: create the spring application context or just a mock - depending on your testing needs, then before

Re: Is wicketstuff-scriptaculous still active?

2008-01-11 Thread Edward Yakop
On Jan 11, 2008 11:12 PM, Ryan Sonnek [EMAIL PROTECTED] wrote: Also, I still don't see how this would work for the SortableListView? Ok, hours as passed (I was thinking to only spent 1 hour, ended up spending 4 instead). Status: After spending much time about SortableListView. I couldn't make

Re: wrong properties displayed

2008-01-11 Thread Michael Sparer
alright, the quickstart and the jira issue can be found here: https://issues.apache.org/jira/browse/WICKET-1274 regards, Michael igor.vaynberg wrote: please provide a quickstart and open a jira issue. -igor On Jan 11, 2008 4:30 AM, Michael Sparer [EMAIL PROTECTED] wrote: Hi, On a

Re: Wickettester and session?

2008-01-11 Thread cricdigs
thats alright, my bad, data issues on my end... cricdigs wrote: Ah that did the trick Igor! Thank you so much! I am still having some issues getting to child components. Can you point me in the right direction there? Thanks again! igor.vaynberg wrote: create the spring

How to pass attributes from one page to the next

2008-01-11 Thread Dale Herrig
I if don't used the Wizard Model, is there a way to pass attributes from one page to the next. Can they be set at the request level, is so how might this be done. Thanks, dgh Be a better friend,

Re: How to pass attributes from one page to the next

2008-01-11 Thread Matej Knopp
On Jan 11, 2008 11:54 PM, Dale Herrig [EMAIL PROTECTED] wrote: I if don't used the Wizard Model, is there a way to pass attributes from one page to the next. Can they be set at the request level, is so how might this be done. Page page = new AnotherPage(anyObjectHere);

How not to show a popup - Or stop it in its tracks?

2008-01-11 Thread bytenotes
Thanks for the help guys. This link opens a popup all right yet when the condition fails, onClick() returns regardless and opens the parent page in the popup. I don't know how to deny the popup to come up at all. Thanks. Florin -- View this message in context:

TreeGrid and DataGrid open source

2008-01-11 Thread Matej Knopp
Hi everyone, I just want to let you know that the TreeGrid and DataGrid components have been released under the Apache 2.0 license. The beta downloads and live demo are available at http://www.inmethod.com . The issue tracker and SVN repository should be available in near future. Cheers,

Re: TreeGrid and DataGrid open source

2008-01-11 Thread Edward Yakop
On Jan 12, 2008 9:08 AM, Matej Knopp [EMAIL PROTECTED] wrote: The beta downloads and live demo are available at http://www.inmethod.com . It's very nice :) Regards, Edward Yakop - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: TreeGrid and DataGrid open source

2008-01-11 Thread Matej Knopp
On Jan 12, 2008 2:28 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Jan 11, 2008 5:08 PM, Matej Knopp [EMAIL PROTECTED] wrote: Hi everyone, I just want to let you know that the TreeGrid and DataGrid components have been released under the Apache 2.0 license. That was very quick!

Re: TreeGrid and DataGrid open source

2008-01-11 Thread Matej Knopp
Glad you like it :) -Matej On Jan 12, 2008 2:31 AM, Edward Yakop [EMAIL PROTECTED] wrote: On Jan 12, 2008 9:08 AM, Matej Knopp [EMAIL PROTECTED] wrote: The beta downloads and live demo are available at http://www.inmethod.com . It's very nice :) Regards, Edward Yakop

Re: TreeGrid and DataGrid open source

2008-01-11 Thread Eelco Hillenius
On Jan 11, 2008 5:08 PM, Matej Knopp [EMAIL PROTECTED] wrote: Hi everyone, I just want to let you know that the TreeGrid and DataGrid components have been released under the Apache 2.0 license. That was very quick! Already rich after one day? Eelco

RE: the flow of wicket

2008-01-11 Thread David Leangen
It would be faster if you can help us. :) sure, it would probably be faster if i coded your project for you too :) Cool! Since you're now doing this kind of volunteer work, Igor, how about coding some stuff for me, too? ;-) I'll send you the project description off-link, but you need to

Re: the flow of wicket

2008-01-11 Thread Igor Vaynberg
only 67? :) -igor On Jan 11, 2008 9:34 PM, David Leangen [EMAIL PROTECTED] wrote: It would be faster if you can help us. :) sure, it would probably be faster if i coded your project for you too :) Cool! Since you're now doing this kind of volunteer work, Igor, how about coding some

Re: Resizable and reorderable grid components

2008-01-11 Thread Johan Compagner
If there would be a market for commercial components then i can see the value of wicketstuff.org/marketplace for such components, commercial or not its still stuff for wicket On 1/11/08, Evan Chooly [EMAIL PROTECTED] wrote: Is that not the official website for the wicket stuff projects? Just

Re: Dont refresh webpage on Form Submit

2008-01-11 Thread Johan Compagner
RequestCycle.get().setRequestTarget(ne emptyrequesttarget) Or something like that in your onsubmit On 1/11/08, Haritha Juturu [EMAIL PROTECTED] wrote: Hi Everyone, I have a Form object in my wicket page. After the onSubmit() method is called the webpage is refreshed. Is there anyway i can

Re: TreeGrid and DataGrid open source

2008-01-11 Thread Johan Compagner
Just open a pay pal account and ask people to give some if they like the components and want to support it. Maybe you get rich then and you can pay thailand for me.. On 1/12/08, Matej Knopp [EMAIL PROTECTED] wrote: On Jan 12, 2008 2:28 AM, Eelco Hillenius [EMAIL PROTECTED] wrote: On Jan