Re: [Wicket-user] Table in a form

2006-12-06 Thread Ted Roeloffzen
I want to use a ListView in a Form. Does anybody have some sample code that i can use? How do i attach a model to the Form? Ted - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

[Wicket-user] FileUpload problem

2006-12-06 Thread Mats Norén
I've been using wicket 1.2.1 in my application but decided to upgrade to 1.2.3. Basically everything works except my FileUpload to a Jackrabbit-repository. My testcases for my DAO:s working against the jackrabbit repo still works but in my application any file larger than 10kb gets an exception

Re: [Wicket-user] updating page contents before and after long process

2006-12-06 Thread Jaime De La Jara
I dit it and worked great !, thank you both. Jaime. Eelco Hillenius [EMAIL PROTECTED] wrote: You could do the processing in a separate thread, and return the page immediately with the progress component that polls (e.g. using Ajax, though doesn't have to) for the progress. Or like Igor said,

Re: [Wicket-user] FileUpload problem

2006-12-06 Thread Mats Norén
Sorry for the spam. I read the javadoc for fileupload and noticed in *bold* that the inputstream is closed between requestsdoh. Strange that it works for files under 10 kb though On 12/6/06, Mats Norén [EMAIL PROTECTED] wrote: I've been using wicket 1.2.1 in my application but decided to

[Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-06 Thread TH Lim
Hi, Where do I find more information about AjaxFormComponentUpdatingBehavior class and classes related to it? I presume this is the starting point when I want to add AJAX / JS feature to my application. Am I right to say so? I have an usecase where I would like to use to JS resolve because

Re: [Wicket-user] Show a disabled ImageButton

2006-12-06 Thread Igor Vaynberg
in standard html you disable sometihng by appending disabled=disabled. i think for core we want to stick with that. if you need something that can express dual state via different images you might have to roll your own using the existing imagebutton as a base. -igor On 12/5/06, NickCanada

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-06 Thread Igor Vaynberg
see this example http://www.wicket-library.com/wicket-examples/ajax?wicket:bookmarkablePage=:wicket.examples.ajax.builtin.ChoicePage -igor On 12/6/06, TH Lim [EMAIL PROTECTED] wrote: Hi, Where do I find more information about AjaxFormComponentUpdatingBehavior class and classes related to

Re: [Wicket-user] Show a disabled ImageButton

2006-12-06 Thread NickCanada
Thanks so much for your reply. I'm on a learning curve with all this. So with a standard wicket form button I can override the onComponentTag: protected void onComponentTag(ComponentTag tag){ tag.put(disabled,

Re: [Wicket-user] Table in a form

2006-12-06 Thread Eelco Hillenius
Wicket-examples' FormInput has a very simple example of that. But consider one of the repeaters to work with forms. And look at one of the Wicket based projects at the shop you're working to see some production code. Eelco On 12/6/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: I want to use a

[Wicket-user] skullcap

2006-12-06 Thread Moon
HIRING IMMEDIATELY: Large energy company is seeking an Mechanical Project Engineer for a CoGen facility in Southern Louisiana. What is your current and minimum acceptable salary? We continue to invest in our network to maintain our status as an industry leader and to remain on the cutting edge

Re: [Wicket-user] Show a disabled ImageButton

2006-12-06 Thread Igor Vaynberg
we are discussing removing final there on our private list - hopefully it will be a very short discussion, will let you know of the outcome -igor On 12/6/06, NickCanada [EMAIL PROTECTED] wrote: Thanks so much for your reply. I'm on a learning curve with all this. So with a standard wicket

Re: [Wicket-user] Table in a form

2006-12-06 Thread Igor Vaynberg
see here also http://issues.apache.org/jira/browse/WICKET-115 -igor On 12/6/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Wicket-examples' FormInput has a very simple example of that. But consider one of the repeaters to work with forms. And look at one of the Wicket based projects at the

[Wicket-user] ImageMap with Wicket 2

2006-12-06 Thread Stefan Lindner
In the current trunk for WicketExamples I found // FIXME image map doesn't work anymore! // Image map link example in file linkomatic\home.java. Is this still true? Does ImageMap not work with current wicket 2? Is there a timeline for fixing this? If it should already work, I have

Re: [Wicket-user] Wicket Shared

2006-12-06 Thread Igor Vaynberg
this is just a matter of models. if your link's onclick can get to the model that feeds the textbox in another tab then its easy. for example a simple bean kept at page level, then all tabs can feed their models as property models off this bean. -igor On 12/6/06, Renan Camponez [EMAIL

Re: [Wicket-user] Wicket Shared

2006-12-06 Thread Renan Camponez
That sounds good... I will try... Thank you! On 12/6/06, Igor Vaynberg [EMAIL PROTECTED] wrote: this is just a matter of models. if your link's onclick can get to the model that feeds the textbox in another tab then its easy. for example a simple bean kept at page level, then all tabs can

[Wicket-user] Application must implement Serializable?

2006-12-06 Thread ChuckDeal
in 1.3, should Application implement Serializable? I am in the process of switching to the 1.3-incubating-SNAPSHOT builds and I needed to implement Serializable on my APplication object. I checked the Wiki (Migrating from 1.2 to 1.3) and this wasn't mentioned. Is this required for 1.3 or

[Wicket-user] Issue about working with designer

2006-12-06 Thread Carfield Yim
One issue I encounter now is the designer have problem of locating HTML template that he like to edit so everytime he need to ask me where is the template is. As most the the component I use is Panel, so I've thought of extending Panel to a custom BasePanel and just add one label at the top to

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-06 Thread TH Lim
Yes, the examples are good and it is where I started off when I look into Wicket's AJAX. I have questions: - 1. ListChoice.onSelectionChanged is not invoke when I add AjaxFormComponentUpdatingBehavior to ListChoice. Does this mean ListChoice behavior is handled thru

Re: [Wicket-user] Issue about working with designer

2006-12-06 Thread Erik van Oosten
Hi Carfield, Did you already look whether Border fits your need? Regards, Erik. Carfield Yim schreef: One issue I encounter now is the designer have problem of locating HTML template that he like to edit so everytime he need to ask me where is the template is. As most the the