Re: Using jQuery with Wicket

2011-03-10 Thread tech7
Hi Andrea, code is too long to attach here. What can I do? - Developer Wicket Java JSP -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-jQuery-with-Wicket-tp3343275p3346586.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Using jQuery with Wicket

2011-03-10 Thread tech7
Thaks to all forum users for their responses. I have solved the problem. The problem was related with authentication methodology. Happy Wicketlying to all - Developer Wicket Java JSP -- View this message in context:

Re: Using jQuery with Wicket

2011-03-10 Thread Josh Kamau
Create a smaller version of it (a quickstart application) demonstrating what you want to achieve. Josh.

Re: Using jQuery with Wicket

2011-03-09 Thread Andrea Del Bene
Hi tech7, could Palette component be helpfull for you? http://wicketstuff.org/wicket14/compref/?wicket:bookmarkablePage=:org.apache.wicket.examples.compref.PalettePage I have some html pages including some jquery functionaliy. For example: select a choice from a select box then click a

Re: Using jQuery with Wicket

2011-03-09 Thread tech7
Thank you for your response. Actually this is not meet with my requirements. Any other suggestion? - Developer Wicket Java JSP -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-jQuery-with-Wicket-tp3343275p3343437.html Sent from the Users forum mailing list

Re: Using jQuery with Wicket

2011-03-09 Thread Josh Kamau
on the first Select , and an ajax form compenent behavior for 'onchange' , On the implementation , remove the item from the first select's model, add it to the other select component's model then add both select components to the target. Also use LoadableDetachableModels for your select

Re: Using jQuery with Wicket

2011-03-09 Thread tech7
Josh thank you for response.I will do that. Also I have another question: I have a page extending from basepage and i have i second page also extending from base page. When I click on submit button on first page it will redirect me to second page but it gives an error like that: WicketMessage:

Re: Using jQuery with Wicket

2011-03-09 Thread tech7
any idea? I am really stuck with that. I will be thankful if you share your idea with me. - Developer Wicket Java JSP -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Using-jQuery-with-Wicket-tp3343275p3344002.html Sent from the Users forum mailing list archive at

Re: Using jQuery with Wicket

2011-03-09 Thread Andrea Del Bene
Hi, how do you add this label to your page? can you show initialization code of second page? any idea? I am really stuck with that. I will be thankful if you share your idea with me. - Developer Wicket Java JSP -- View this message in context:

Re: Using jQuery with Wicket

2011-03-09 Thread tech7
Hi, I am calling second page onsubmit method of the first page as: setResponsePage(PGSecond.class); and on the second page label is added as: Thanx. - Developer Wicket Java JSP -- View this message in context:

Re: Using jQuery with Wicket

2011-03-09 Thread andrea del bene
Hi, I think you've forgotten adding code Hi, I am calling second page onsubmit method of the first page as: setResponsePage(PGSecond.class); and on the second page label is added as: Thanx. - To unsubscribe, e-mail:

Re: using jquery with wicket

2009-03-19 Thread Anton Veretennikov
As you told about blockUI. There is Jquery integration from WicketStuff. You need to add dependency groupIdorg.wicketstuff/groupId artifactIdwicketstuff-jquery/artifactId version1.4-SNAPSHOT/version /dependency to your pom.xml Then create

Re: using jquery with wicket

2009-03-19 Thread fachhoch
please suggest me on what changes should i make to Veil component in wicketstuff-minis to use it as a mask or block my page ? igor.vaynberg wrote: see the Veil component in wicketstuff-minis project, that should give you all the clues you need. -ig On Tue, Mar 17, 2009 at 12:57 PM,

Re: using jquery with wicket

2009-03-19 Thread fachhoch
This is great explanation thank you , I am looking more to create something like org.apache.wicket.extensions.ajax.markup.html.WicketAjaxIndicatorAppender . I am trying to do something likeIndicatingAjaxLink to AjaxFallbackDefaultDataTable and trying follow whats in

Re: using jquery with wicket

2009-03-19 Thread Anton Veretennikov
I'm a novice. It will be good to be added automatically to all ajax links like suggested on blockUI site: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); @Override protected CharSequence getOnReadyScript() { return $().ajaxStart($.blockUI).ajaxStop($.unblockUI); } But

Re: using jquery with wicket

2009-03-19 Thread fachhoch
I can do this for a link as you say but how to add this behaviour for org.apache.wicket.extensions.ajax.markup.html.repeater.data.table.AjaxFallbackDefaultDataTable, in this component all the links are hidden , they are the table columns headers , I dont have access to them , how can i add

Re: using jquery with wicket

2009-03-18 Thread fachhoch
I compared wicketstuff.minis.veil and WicketAjaxIndicatorAppender http://www.nabble.com/file/p22582613/code.gif this is the code from WicketAjaxIndicatorAppender , but this method public void onRendered(Component component) is not overriden in org.wicketstuff.minis.veil.VeilResources

Re: using jquery with wicket

2009-03-17 Thread Igor Vaynberg
see the Veil component in wicketstuff-minis project, that should give you all the clues you need. -ig On Tue, Mar 17, 2009 at 12:57 PM, fachhoch fachh...@gmail.com wrote: I want to use jquery block  plugin    to block my page for ajax requests  , please help me with some tutorials   how to