Re: wicket-tree checkboxes managing

2011-05-21 Thread massimo_pugni
Hi, now that all is looking fine I'm observing a strange behaviuor. The same method, to 'check/uncheck' all from a button, public void modifyAllCheckBoxes(final boolean select) { visitChildren(CheckBox.class, new IVisitorComponent() { @Override public Object

Re: wicket-tree checkboxes managing

2011-05-21 Thread Sven Meier
Hi Massimo, children of collapsed nodes are not present in the Wicket component hierarchy. I don't understand why you're getting different results whether you want to select or deselect though. Instead of twiddling with components, you should perform the mutation directly on your model

facebook like iframe in wicket

2011-05-21 Thread labano10
I want to incorporate the facebook like button in my wicket application page. The page is a story page which displays different stories based on what story the user clicked on in the previous page. Basically, the page is rendered with one story every time. Based on the facebook implementation of

JavaScript enabled or disabled

2011-05-21 Thread meduolis
Hi, is there any way to check if JS is enabled from wicket code? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/JavaScript-enabled-or-disabled-tp3540451p3540451.html Sent from the Users forum mailing list archive at Nabble.com.

Ajax and browser Back button

2011-05-21 Thread meduolis
I have noticed, that there is one issue when you click back button on browser. If it was ajaxified page and you click on any control after back button clicked in browser you will get exception that clicked component not found or something. I did some research and found this as one of solutions:

Re: JavaScript enabled or disabled

2011-05-21 Thread Adam Gray
Unless there's another way I'm not familiar with, I believe you can use getScreenHeight or getScreenWidth from ClientProperties. Someone correct me if I'm wrong, but I believe these values will still be -1 (their default) if javascript is disabled. Be sure to add:

Re: JavaScript enabled or disabled

2011-05-21 Thread meduolis
Already tried this. No success because of http://apache-wicket.1842946.n4.nabble.com/Odd-behaviour-after-setGatherExtendedBrowserInfo-true-td1857093.html :/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/JavaScript-enabled-or-disabled-tp3540451p3540522.html Sent

Re: Ajax and browser Back button

2011-05-21 Thread Maarten Billemont
Perhaps you can navigate to an anchor after each AJAX call. On 21 May 2011, at 12:54, meduolis wrote: I have noticed, that there is one issue when you click back button on browser. If it was ajaxified page and you click on any control after back button clicked in browser you will get

Re: Ajax and browser Back button

2011-05-21 Thread meduolis
Could you please provide any simple example? Because I don't understand your solution :] -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Ajax-and-browser-Back-button-tp3540454p3540573.html Sent from the Users forum mailing list archive at Nabble.com.

wiquery and IE 9 not compatible

2011-05-21 Thread meduolis
Just wondering if any other noticed how strange wiquery behaves on IE 9? It sometimes works, sometimes don't. Created issue ticket here: http://code.google.com/p/wiquery/issues/detail?id=184 If any have similar problems, please share yours Solutions to fix this are welcome. -- View this

Wicket's Wizard Component

2011-05-21 Thread Corbin, James
I am attempting to enhance the Wizard's layout by sub-classing Wizard.java. The idea is to change the default markup to suit some specific layout requirements. The problem I am trying to solve is to re-parent the form to the component bound to the wicket:id myOuterWrapperComp, but not sure

Re: Wicket's Wizard Component

2011-05-21 Thread Brian Topping
Wizard probably ought to be moved to the category of example code instead of something that can (or will) be improved. It hasn't changed much since it was written, and if it were changed, would probably break hundreds of users for no real benefit (i.e. users would have to go implement new

RE: Wicket's Wizard Component

2011-05-21 Thread Corbin, James
Actually, it makes sense to pull the source and modify it to support my specific needs. J.D. -Original Message- From: Brian Topping [mailto:topp...@codehaus.org] Sent: Saturday, May 21, 2011 9:29 AM To: users@wicket.apache.org Subject: Re: Wicket's Wizard Component Wizard probably

RE: Wicket's Wizard Component

2011-05-21 Thread Corbin, James
To the core wicket developers, is there any copyright concerns with pulling the Wizard source into my codebase and modifying it? J.D. -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Saturday, May 21, 2011 9:37 AM To: users@wicket.apache.org Subject: RE:

wicket showing traces that we used wicket is it a problem

2011-05-21 Thread hariharansrc
html head titleWicket form/title /head body form id=id1 method=post action=;jsessionid=90C6F4DC17391001C2B5A3575453976D?wicket:interface=:0:form::IFormSubmitListener::div

Re: Wicket's Wizard Component

2011-05-21 Thread Brian Topping
Everything including Wizard has the ASL 2.0 copyleft at the top, which grants free and unrestricted use for commercial and non-commercial purposes. On May 21, 2011, at 11:40 AM, Corbin, James wrote: To the core wicket developers, is there any copyright concerns with pulling the Wizard source

Ajaxifying RadioGroups

2011-05-21 Thread Tom Howe
Hi, Hi, I am trying to build a RadioGroup that triggers an ajax callback so I can refresh another panel with the value set in the radio. I couldn't find a good example anywhere and I've failed using the AjaxFormChoiceComponentUpdatingBehavior in the following code. What am I doing wrong here..

Re: wicket showing traces that we used wicket is it a problem

2011-05-21 Thread Andreas Petersson
this is the html code i got for a simple program using ajax it shows many traces that we used wicket i am imagining is it cause any problem to reveal what we actually used to the users. It also shows traces that you are using JQuery. That might reveal you are too lazy to code every line of

Re: Ajaxifying RadioGroups

2011-05-21 Thread Tom Howe
ignore this - some jquery I had was breaking the wicket javascript. On Sat, May 21, 2011 at 8:16 PM, Tom Howe tomh...@artcore.com wrote: Hi, Hi, I am trying to build a RadioGroup that triggers an ajax callback so I can refresh another panel with the value set in the radio. I couldn't find