Re: Submitting a component value on a ajax call of a different component

2010-06-23 Thread vov
http://www.wicketstuff.org/wicket14/ajax/choice -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Submitting-a-component-value-on-a-ajax-call-of-a-different-component-tp2264940p2265189.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: LinkTree and DownloadLink

2010-06-23 Thread Ernesto Reinaldo Barreiro
Anna, Third parameter ( Example DownloadLink in your case) is just an alternative fine name: see onClick() method to see how it is used. Can you try following panel? import java.io.File; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.link.DownloadLink;

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread danisevsky
Thanks! I am using your components and I am very statisfied. 2010/6/23 Duy Do doquoc...@gmail.com It's great, I will give it a try. Thanks a lot for your contribution. Duy On Tue, Jun 22, 2010 at 5:30 PM, Richard Nichols r...@visural.com wrote: Hi all, I'm pleased to announce the

Re: handling error in DataProvider

2010-06-23 Thread Decebal Suiu
The problem with RestartResponsePage approach is that when multiple data tables (for example last 2 tables from 10) are in error I have a performance problem. Is it true my observation? Thanks, Decebal -- View this message in context:

RE: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Maris Orbidans
Looks great! I will give it a try. Is it maven repo ? -Original Message- From: r...@richardnichols.net [mailto:r...@richardnichols.net] On Behalf Of Richard Nichols Sent: 23 June 2010 01:31 To: users@wicket.apache.org Subject: Announcing: visural-wicket 0.6 released - open source

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Richard Nichols
It's just hosted in SVN w/ .pom http://code.google.com/p/visural-wicket/wiki/MavenSupport http://code.google.com/p/visural-wicket/wiki/MavenSupportIt should work ok though - let me know if you have issues. cheers, Richard. On 23 June 2010 20:24, Maris Orbidans maris.orbid...@ingg.com wrote:

Re: ajaxPagingNavigation, Dataview, CheckGroup and check. Persist items checked

2010-06-23 Thread Pedro Santos
Basically make sure that the state selected is on the component model before the user change the page. Maybe you need to put an AjaxFormComponentUpdatingBehavior or AjaxFormChoiceComponentUpdatingBehavior at your item checked On Tue, Jun 22, 2010 at 2:02 PM, Fernando Wermus

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Paul Szulc
If you would like to, I can elp you create maven repository on google code for this project. Let me know. On Wed, Jun 23, 2010 at 1:05 PM, Richard Nichols r...@visural.com wrote: It's just hosted in SVN w/ .pom http://code.google.com/p/visural-wicket/wiki/MavenSupport

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread James Carman
Why not just get it published to the main Maven repository? It's not that difficult. On Wed, Jun 23, 2010 at 9:27 AM, Paul Szulc paul.sz...@gmail.com wrote: If you would like to, I can elp you create maven repository on google code for this project. Let me know. On Wed, Jun 23, 2010 at 1:05

Security questions

2010-06-23 Thread danisevsky
I would like to implement guest book panel and I have two security question. 1) Need I captcha when there will be only ajax submit link? I think that robots can't submit form thru javascript. 2) New comments will users write in Rich Text Editor (

Re: LinkTree and DownloadLink

2010-06-23 Thread Anna Simbirtsev
Thank you, its showing now. On Wed, Jun 23, 2010 at 3:24 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Anna, Third parameter ( Example DownloadLink in your case) is just an alternative fine name: see onClick() method to see how it is used. Can you try following panel? import

Problems with AjaxPagingNavigation

2010-06-23 Thread Matthias Klass
Hi, I've added a AjaxPagingNavigation to a Panel. Yet, when clicking on the created link nothing happens - no redirection to the new page. When I copy the link directly from the markup and paste it into the browser window, the new page shows up - it's just about the click link. First I

Problems with AjaxPagingNavigation

2010-06-23 Thread Matthias Klass
Hi, I've added a AjaxPagingNavigation to a Panel. Yet, when clicking on the created link nothing happens - no redirection to the new page. When I copy the link directly from the markup and paste it into the browser window, the new page shows up - it's just about the click link. First I

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Fernando Wermus
Tooltip is not working on Internet Explorer 8 and windows xp On Wed, Jun 23, 2010 at 6:31 AM, James Carman ja...@carmanconsulting.comwrote: Why not just get it published to the main Maven repository? It's not that difficult. On Wed, Jun 23, 2010 at 9:27 AM, Paul Szulc paul.sz...@gmail.com

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Fernando Wermus
These are the errors: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022) Timestamp: Wed, 23 Jun 2010 19:42:54 UTC Message:

Looking for a Software Engineer in San Francisco

2010-06-23 Thread Eelco Hillenius
Hi folks! At Teachscape, we're looking for a good Java Software Engineer, preferably with Wicket experience, in San Francisco. See: http://sfbay.craigslist.org/sfc/sof/1794123343.html Please shoot me an email if you're interested in this position. Cheers, Eelco

wicketstuff-push causing WicketRuntimeException component not found on Page

2010-06-23 Thread David Meulemans
Hi I have a Listener object with a Map in it containing org.apache.wicket.Component objects that need to be updated every time the onChange(); method is called. For example caused by another user's actions. This works perfectly with wicketstuff-push. The org.apache.wicket.Component objects that

Re: Submitting a component value on a ajax call of a different component

2010-06-23 Thread jammyjohn
Hi, I am looking to submit the selected value from the dropdown to the server , on the onblur of the textfield component. Is there a way to do it, though I have attached the AjaxFormComponentUpdatingBehavior to the textfield but not to the dropdown box. Appreciate your help in this regard.

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Richard Nichols
Internet Explorer requires that you use the ExCanvas javascript add-in. You can do this by: class MyPage extends Page { public MyPage() { add(new com.google.excanvas.ExCanvasHeaderContributor()); }

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Richard Nichols
Yes if you could lend me some assistance let me know. I don't use Maven, and the project builds with Ant. Currently I have a build target to generate the .pom and directory structure for the Maven folder. On 23 June 2010 23:27, Paul Szulc paul.sz...@gmail.com wrote: If you would like to, I can

Grinder with Wicket

2010-06-23 Thread Gurpreet.Singh
Hi All, Just want to know , if anybody tried Grinder with wicket with lots of Ajax widgets. Please share your experience. Thanks Preet

Re: Announcing: visural-wicket 0.6 released - open source wicket components

2010-06-23 Thread Ernesto Reinaldo Barreiro
Richard. why not make the component that needs it sniff the request and if browser is IE then add ExCanvasHeaderContributor. Then users will not forget to follow your advice;-) Ernesto On Wed, Jun 23, 2010 at 11:24 PM, Richard Nichols r...@visural.com wrote: Internet Explorer requires that