Re: [Wicket-user] ListView and setRenderBodyOnly

2006-11-15 Thread Erik van Oosten
Hi Igor, To ease your life a bit :) I wrote WICKET-71 and updated the wiki (http://cwiki.apache.org/WICKET/listview-and-other-repeaters.html). Thanks for solving WICKET-71 so quickly :) Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/

[Wicket-user] DropDownChoice.onSelectionChanged() and Form button

2006-11-15 Thread cowwoc
Hi, If I have a form with a single DropDownChoice with a onSelectionChanged listener then it gets invoked fine when I change the selection. The moment I add a Submit button into the form alongside the DropDownChoice, then the event no longer gets fired when I change the selection.

Re: [Wicket-user] ListView and setRenderBodyOnly

2006-11-15 Thread Igor Vaynberg
thank you for writing it up and the wiki as well-igorOn 11/15/06, Erik van Oosten [EMAIL PROTECTED] wrote:Hi Igor,To ease your life a bit :) I wrote WICKET-71 and updated the wiki (http://cwiki.apache.org/WICKET/listview-and-other-repeaters.html).Thanks for solving WICKET-71 so quickly :)Regards,

Re: [Wicket-user] DropDownChoice.onSelectionChanged() and Form button

2006-11-15 Thread cowwoc
Arrgh! Problem solved: http://www.webprodevelopment.com/BrightLight/archives/17-this.form.submit-is-not-a-function.-Really,-its-an-object!.html BTW: This issue was aggravated by the fact that I had wicket:id=submit and Wicket copied that value over to an attribute

Re: [Wicket-user] DropDownChoice.onSelectionChanged() and Form button

2006-11-15 Thread Igor Vaynberg
lol, eelco ran into this months ago. youd figure he would build in a check. lazy dutch...-igorOn 11/14/06, cowwoc [EMAIL PROTECTED] wrote:Arrgh! Problem solved: http://www.webprodevelopment.com/BrightLight/archives/17-this.form.submit-is-not-a-function.-Really,-its-an-object!.html

[Wicket-user] Ajax refresh for Image

2006-11-15 Thread Robert Jacolin
Hello, I'm trying to change the src of an image when the user clicking on a ajaxLink by this way : On a panel, I have an icon and a text (a date using DateLabel from databinder). When the user clicks on the link,the panel is refresh by : public void onClick(AjaxRequestTarget target) {

Re: [Wicket-user] Question about DataTable

2006-11-15 Thread Carfield Yim
Yes, it work nicely, But I still have 2 things like to do. 1) For now if there is not record, look like it is using NoRecordsToolbar() and show No Records Found messages with column hander, can I instead just show nothing? May be an empty table without even a TR? 2) If there anyway to add a

Re: [Wicket-user] Using Javascript Effects Before An Ajax Call

2006-11-15 Thread cygnusx2112
Thanks for the clarification Igor. I ended up achieving the desired affect by using an AjaxCallDecarator in combination with a server side pause. Basically I was trying to do the following: 1) Run animation effect on element 2) Use Ajax request to replace element 3) Run another

Re: [Wicket-user] Ajax refresh for Image

2006-11-15 Thread Igor Vaynberg
try using NonCachingImage-igorOn 11/15/06, Robert Jacolin [EMAIL PROTECTED] wrote:Hello,I'm trying to change the src of an image when the user clicking on a ajaxLink by this way :On a panel, I have an icon and a text (a date using DateLabel fromdatabinder).When the user clicks on the link,the

Re: [Wicket-user] Question about DataTable

2006-11-15 Thread Igor Vaynberg
On 11/15/06, Carfield Yim [EMAIL PROTECTED] wrote: 1) For now if there is not record, look like it is usingNoRecordsToolbar() and show No Records Found messages with columnhander, can I instead just show nothing? May be an empty table withouteven a TR? dont use the DefaultDataTable, create your

Re: [Wicket-user] Using Javascript Effects Before An Ajax Call

2006-11-15 Thread Igor Vaynberg
the big problem being that you pause the server thread. now instead of 70ms it takes what? 3000ms? all because of _javascript_ effects? it makes it easy for someone to ddos your site, or at the least lower your throughput significantly. this is a bad solution. the blocking needs to happen on the

Re: [Wicket-user] Using Javascript Effects Before An Ajax Call

2006-11-15 Thread cygnusx2112
I agree that this is a poor solution to a problem that should really be solved on the client. I am currently investigating the use of a queue to serialize effects around the replacement. http://wiki.script.aculo.us/scriptaculous/show/EffectQueues

Re: [Wicket-user] Using Javascript Effects Before An Ajax Call

2006-11-15 Thread Jonathan Sharp
I think the best approach to this would be to add _javascript_ before the ajax call and add additional _javascript_ in the ajax callback function. This is a little tricky but can be done. Pausing the request on the server is definitely no the way to go. I haven't looked at what _javascript_ is

Re: [Wicket-user] Using Javascript Effects Before An Ajax Call

2006-11-15 Thread Jonathan Sharp
We've ended up using jquery (http://jquery.com) for all of our projects here and it provides queueing very elegantly.$('#myElementId').hide('slow').show('slow');It might be worth looking into integrating. -jsOn 11/15/06, cygnusx2112 [EMAIL PROTECTED] wrote: I agree that this is a poor solution to

Re: [Wicket-user] DropDownChoice.onSelectionChanged() and Form button

2006-11-15 Thread Eelco Hillenius
I suggested that, but as far as I can remember other people - including you - didn't think we shouldn't do anything other than maybe logging a warning. Personally, I think we should consider a hard fail. Do people want this? Then please open an issue for it. Eelco On 11/15/06, Igor Vaynberg

Re: [Wicket-user] DropDownChoice.onSelectionChanged() and Form button

2006-11-15 Thread Eelco Hillenius
Do people want this? Then please open an issue for it. Oh. Was reading my backlog from old to new, and then I found http://issues.apache.org/jira/browse/WICKET-75. Eelco - Take Surveys. Earn Cash. Influence the Future of

[Wicket-user] wicket-1.2.3 spanish Application properties

2006-11-15 Thread pepone . onrez
I translate de ApplicationProperties files in spanish for wicket-1.2.3 y paste here the content RequiredValidator=el campo '${label}' es obligatorio. TypeValidator='${input}' no es un ${type} valido. NumberValidator.range=${input} debe estar entre ${minimum} y ${maximum}.

Re: [Wicket-user] wicket-1.2.3 spanish Application properties

2006-11-15 Thread Martijn Dashorst
Could you please create a JIRA issue (don't forget to check the 'Grant license to ASF for inclusion in ASF works' when you upload/attach the file to the issue? http://issues.apache.org/jira/browse/WICKET Martijn On 11/15/06, pepone. onrez [EMAIL PROTECTED] wrote: I translate de

Re: [Wicket-user] wicket-1.2.3 spanish Application properties

2006-11-15 Thread pepone . onrez
Hi Martijn I can create it. But what type Issue must i use? On 11/15/06, Martijn Dashorst [EMAIL PROTECTED] wrote: Could you please create a JIRA issue (don't forget to check the 'Grant license to ASF for inclusion in ASF works' when you upload/attach the file to the issue?

Re: [Wicket-user] wicket-1.2.3 spanish Application properties

2006-11-15 Thread Eelco Hillenius
doesn't matter much. Improvement/ feature request is fine. Eelco On 11/15/06, pepone. onrez [EMAIL PROTECTED] wrote: Hi Martijn I can create it. But what type Issue must i use? On 11/15/06, Martijn Dashorst [EMAIL PROTECTED] wrote: Could you please create a JIRA issue (don't forget to

Re: [Wicket-user] wicket-1.2.3 spanish Application properties

2006-11-15 Thread Eelco Hillenius
Thanks for contributing btw :) On 11/15/06, Eelco Hillenius [EMAIL PROTECTED] wrote: doesn't matter much. Improvement/ feature request is fine. Eelco On 11/15/06, pepone. onrez [EMAIL PROTECTED] wrote: Hi Martijn I can create it. But what type Issue must i use? On 11/15/06, Martijn

Re: [Wicket-user] How to catch all un-caught exception and provide a nice error screen to user?

2006-11-15 Thread Carfield Yim
Just have time to work on that part, it work fine, thx~ On 11/8/06, Johan Compagner [EMAIL PROTECTED] wrote: see IApplicationSettings.setInternalErrorPage() Yes that must be a page. You could do it completel based on the exception itself make your own requestcycle and then implement

Re: [Wicket-user] Validation without form submit...

2006-11-15 Thread Erik Brakkee
On 11/14/06, Igor Vaynberg [EMAIL PROTECTED] wrote: just rename the .zip into .iamzip :) Ok, didn't think of that. Anyway, what do you think of the example. Is it a valid example or am I solving the problem in the wrong way? -igor On 11/14/06, Erik Brakkee [EMAIL PROTECTED] wrote: On

Re: [Wicket-user] Validation without form submit...

2006-11-15 Thread Johan Compagner
On 11/15/06, Erik Brakkee [EMAIL PROTECTED] wrote: On 11/14/06, Igor Vaynberg [EMAIL PROTECTED] wrote: just rename the .zip into .iamzip :) thats a bit stupid that you have to do that by the way. johan - Take Surveys.

Re: [Wicket-user] Validation without form submit...

2006-11-15 Thread Igor Vaynberg
you dont gotta tell me, i guess they are trying to prevent the spread of viruses or some such. you could just use a better zip, i dont think they block rars -igor On 11/15/06, Johan Compagner [EMAIL PROTECTED] wrote: On 11/15/06, Erik Brakkee [EMAIL PROTECTED] wrote: On 11/14/06, Igor

Re: [Wicket-user] Validation without form submit...

2006-11-15 Thread Igor Vaynberg
could you attach the proper index.java or the quickstart? -igor On 11/15/06, Erik Brakkee [EMAIL PROTECTED] wrote: On 11/14/06, Igor Vaynberg [EMAIL PROTECTED] wrote: just rename the .zip into .iamzip :) Ok, didn't think of that. Anyway, what do you think of the example. Is it a valid

[Wicket-user] Suggestions/Questions on the Portlet code

2006-11-15 Thread Gustavo Hexsel
Why is the creation of a PortletApplication done in the WicketPortlet, instead of the WicketPortletServlet? It seems to me that, more likely than not, if the application contains more than one portlet, they'll end up sharing the session (they need to if there's inter-portlet communication).

[Wicket-user] sides cornice boxes

2006-11-15 Thread Happy
Type nullsales a true copy Copyright Careersace Helpful. Survey you are is Logsgt Polls a. Rssemail friendadd am Recent! Pages Forumsmost Popular up now Online. Us Door Locks Screws Safety Closet. My Order Account of Help or Store Locator a Contact us. Ethics Patent in Policycopy inc part a new