Re: Feedback Panel on Modal Window With Field Validation does not work

2008-10-28 Thread
try page not panel 2008/10/29 sureshram [EMAIL PROTECTED] Hello, I am trying to add auto validation in the modal window but I don't see any error messages. I added a feedback panel on a modal window which has a required text field. When I try to submit, the modal window does not do any

How to use Menu component in wicket-yui stuff?

2008-10-23 Thread
Hello, I want to konw how to use Menu component in wicket-yui stuff? Can anyone give me a demo or example? I could ont find any javadoc or sourcecode. Thanks!

Re: using Prototype.js and Scriptaculous with latest version of wicket

2008-10-05 Thread
I agree with Igor. if you are looking to generate your ui purely in javascript you will not be able to take advantage of a lot of wicket components. And i think you should generate your ui purely in javascript only when the ui dose not include in the standard Html components. 2008/10/3 Igor

Re: Get object form Parameters

2008-09-26 Thread
pass id, and then get that object from that id 2008/9/27 Igor Vaynberg [EMAIL PROTECTED] pageparameters is used for passing parameters on the url, so it only supports strings or whatever you can convert to a string. -igor On Fri, Sep 26, 2008 at 9:35 PM, fish3934 [EMAIL PROTECTED] wrote:

Re: update dropdown with ajax

2008-09-23 Thread
Try ModalWindow instead of popup page. On Mon, Sep 22, 2008 at 3:06 PM, tbt [EMAIL PROTECTED] wrote: Hi I have a problem regarding how to update a dropdown with ajax when an option is added through a popup window. For example Page A has a dropdown and a link. When the link is

Re: Hi, had anyone tried to read the source code?

2008-08-29 Thread
Hi, I also want to get some suggestion. 2008/8/29, shrimpywu [EMAIL PROTECTED]: Hi, had anyone tried to read the source code? i am very interesting with play around with wicket, so i really want to know how wicket do things but one thing i am stuck with is that, i check out the src

How to change the em tag proceduced by wicket:link

2008-08-29 Thread
Hello, I am reading Wicket in action -- a very good book. In the book , authors explain the wicket:link tag with the following code wicket:link |#1 ul | lia href=package1/Page1.htmlPage1/a/li | #2 lia href=package2/Page2.htmlPage2/a/li | #3 /ul | /wicket:link

Re: How to change the em tag proceduced by wicket:link

2008-08-29 Thread
Thank you, Martijn 在08-8-29,Martijn Dashorst [EMAIL PROTECTED] 写道: see IMarkupSettings#setDefault*DisabledLink Martijn

Re: Popup from a link

2008-08-29 Thread
Louis, Thank you, nice examples. 2008/8/30, Louis Letourneau [EMAIL PROTECTED]: You can check out the example in wicket extensions: http://www.wicket-library.com/wicket-examples/ajax/modal-window.0;jsessionid=D48A81DCC881B0D8A11DAA7EE39C81B1

Re: Override HeaderResponse' renderJavascript() method

2008-08-27 Thread
Yes,That can make it. But if i just want to modify it. Can I make it? 在08-8-27,Matej Knopp [EMAIL PROTECTED] 写道: Don't specify the id. Just put there null, the javascript will be always rendered. -Matej On Wed, Aug 27, 2008 at 3:20 AM, 张伟 [EMAIL PROTECTED] wrote: Hello, I use

Re: fileupload element checking filename existing before upload using ajax

2008-08-27 Thread
Mattom, Thank you for sharing code. Thank you . 2008/8/28, Mattom [EMAIL PROTECTED]: Found a different solution, in case somebody is interested: fileUploadField.add(new AjaxEventBehavior(onchange) { protected void onEvent(AjaxRequestTarget target) {

Fwd: Override HeaderResponse' renderJavascript() method

2008-08-26 Thread
Hello, I use the renderJavascript(java.lang.CharSequence javascript, java.lang.String id) method in HeaderResponse class to output the some js code in html header. This renderJavascript method will render javascript code to the response, if the javascript has not already been rendered. But i