Re: AJAX updating of non typical components

2012-12-13 Thread Martin Makundi
Maybe add a dummy component inside the panel that is refreshed instead and piggybacks your js or smth. 2012/12/13 Ernesto Reinaldo Barreiro reier...@gmail.com: Hi, On Wed, Dec 12, 2012 at 8:29 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Why not have outputmarkupid=true?

[ANN] wicket-dnd now ready for Wicket 6

2012-12-13 Thread Sven Meier
Hi all, I've migrated wicket-dnd, the dragdrop library for Wicket 6: - now utilizing Wicket's built-in jQuery - better support for scrolled containers - in Maven central repository soon - no changes to the Java API (CSS classes have changed though) The code is located on github now and a first

[ANN] wicket-box for Wicket

2012-12-13 Thread Sven Meier
Hi all, wicket-box is a collection of Behaviors to enhance your Wicket components with client-side dynamic layouts. Most prominently is enhances DataTable to look and feel like other modern JavaScript solutions. See here for examples: http://wicket-box.appspot.com The code is located on

Re: url problem of resourceLink popup page

2012-12-13 Thread Martin Grigorov
Hi, The popup settings' name is the JavaScript name used in window.open(). It is used for inter window communication (JavaScript). The resource name and cache are controlled by IResource's ResourceResponse fields. On Wed, Dec 12, 2012 at 7:30 PM, appwicket wwx@gmail.com wrote: Hi I am

[RELEASE] WicketStuff 6.3.0 released

2012-12-13 Thread Martijn Dashorst
All, I've released wicketstuff core 6.3.0 based on Wicket 6.3.0 and it will become shortly available in Maven Central. Below is the changelog between 6.2.1 and 6.3.0 Martijn Martin Grigorov (6): Merge pull request #163 from wickeria/master Merge pull request #164 from

AjaxEditableLabel not saving after migration to 6.3

2012-12-13 Thread N. Metzger
Hi all, I recently migrated from 1.5.5 to 6.3. My objective is to display a list of group members with the ability to insert or update an expiration date for a specific member. It worked correctly before, but now I'm having problems with my AjaxEditableLabel nested in a PropertyColumn. I can

Re: Has DropDownChoice changed?

2012-12-13 Thread N. Metzger
Anybody with a clue about the DropDownChoice? I had to set dropDownChoice.setNullValid(true); which is not my favorite option. I miss the old behavior where in the initial rendering the was a Choose one option which vanished after the user made the first real choice. Has that been removed in

Re: AjaxEditableLabel not saving after migration to 6.3

2012-12-13 Thread Martin Grigorov
Hi, By default AEL submits on ENTER key press or blur event. Does it work with blur ? Check with Firebug or similar whether an Ajax call is made at all. Check whether

Re: Has DropDownChoice changed?

2012-12-13 Thread Sven Meier
In wicket-example's DropDownChoicePage it works fine as ever. Sven On 12/13/2012 03:19 PM, N. Metzger wrote: Anybody with a clue about the DropDownChoice? I had to set dropDownChoice.setNullValid(true); which is not my favorite option. I miss the old behavior where in the initial rendering

RE: Wicket training - instructor led

2012-12-13 Thread Paul Bors
http://wicket.apache.org/learn/books/ :) -Original Message- From: Michael Chandler [mailto:michael.chand...@onassignment.com] Sent: Thursday, December 13, 2012 11:52 AM To: users@wicket.apache.org Subject: Wicket training - instructor led Greetings! I was hoping someone might be able

RE: Wicket training - instructor led

2012-12-13 Thread Michael Chandler
Books are on order and shipping to me just in time for the holiday! :) Thanks Paul! -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Thursday, December 13, 2012 9:21 AM To: users@wicket.apache.org Subject: RE: Wicket training - instructor led

RE: [ANN] wicket-dnd now ready for Wicket 6

2012-12-13 Thread Chris Colman
Looks good. I can see some very handy uses for drag and drop. -Original Message- From: Sven Meier [mailto:s...@meiers.net] Sent: Thursday, 13 December 2012 7:09 PM To: users@wicket.apache.org Subject: [ANN] wicket-dnd now ready for Wicket 6 Hi all, I've migrated wicket-dnd, the

Can't get AutocompleteBehavior to work

2012-12-13 Thread Marc Nuri San FĂ©lix
Hello I'm migrating my applications to wicket 6.0.3 form the latest Wicket 1.5. I've got some problems with wicket AutocompleteBehavior. There are no javascript exceptions in the browser console, but some functionality is not working. The problems are regarding showing the list of choices when

Re: Can't get AutocompleteBehavior to work

2012-12-13 Thread Marc Nuri
I meant Wicket 6.3, not 6.0.3 - -- Marc Nuri www.marcnuri.com -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-t-get-AutocompleteBehavior-to-work-tp4654780p4654781.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Has DropDownChoice changed?

2012-12-13 Thread N. Metzger
I don't think I made myself clear. I would like to set dropDownChoice.setNullValid(false); And yes, I can do it. But in 1.5 on the first upload I got a choice of Choose One Option 1 Option2 Then the user would choose either option 1 or 2 and Choose One would vanish. In 6.3 I only get Option 1

Wicket 6.3.0 AjaxLink: IAjaxCallListener behaviour

2012-12-13 Thread pe1er
Prior to Wicket 6 the javascript code returned by IAjaxCallDecorator.decorateScipt was executed immediately after a click. I migrated IAjaxCallDecorator according to the migration-guide. By clicking 3 times the link within 5 seconds the expected result is: getPrecondition getPrecondition

Re: How to handle failing calls to external systems within a Component without resorting to an error page?

2012-12-13 Thread heapifyman
Maybe an AjaxLazyLoadPanel could help? I think you could catch service exceptions in getLazyLoadComponent() and return an error panel instead of the real one. 2012/12/13 Stefan Renz s.r...@efonds.com Hi, my searches didn't turn up anything, so I figured I ask on the mailing list: Consider

how wicket handles images

2012-12-13 Thread markR
I am using a css file that refers to several images in form of images/some.gif running the application i can see in browser console: [16:40:29.956] GET http://localhost:8080/webtools/wicket/resource/com.abc.webtools.web.HomePage/images/big.gif [HTTP/1.1 404 Not Found 0ms] On server side: WARN

Re: How to handle failing calls to external systems within a Component without resorting to an error page?

2012-12-13 Thread Sven Meier
You could probe the model in #onConfigure(), catching exceptions and replacing the panel. If your model is a LDM, how should it fail on successive accesses during actual rendering? Sven On 12/13/2012 09:46 PM, Stefan Renz wrote: Hi, my searches didn't turn up anything, so I figured I ask on

Re: How to handle failing calls to external systems within a Component without resorting to an error page?

2012-12-13 Thread Stefan Renz
Sven Meier wrote: You could probe the model in #onConfigure(), catching exceptions and replacing the panel. If your model is a LDM, how should it fail on successive accesses during actual rendering? Theoretically because the web service can become unavailable at any given time. However, I

Re: How to handle failing calls to external systems within a Component without resorting to an error page?

2012-12-13 Thread Stefan Renz
heapifyman wrote: Maybe an AjaxLazyLoadPanel could help? I think you could catch service exceptions in getLazyLoadComponent() and return an error panel instead of the real one. That probably makes sense in any case because one can never be sure that the RPC-style call returns in acceptable

Re: Wicket 6.3.0 AjaxLink: IAjaxCallListener behaviour

2012-12-13 Thread Martin Grigorov
Hi, You experience this behavior because there is a synchronization of the Ajax requests at the client side - see AjaxChannel's javadoc. What is your use case ? On Thu, Dec 13, 2012 at 10:14 PM, pe1er fupol2...@gmail.com wrote: Prior to Wicket 6 the javascript code returned by