In a Wicket app, I have a bunch of <button> elements to which I'm attacking a Link component. Now in the onClick() method of the component I want to disable or change the style of the button. How can I do that? Calling setEnabled(false) has no effect.
|
|
|
Repeated uses of onClick() are operating on the same object in memory. If you're not using Ajax, you can still maintain some state in an anonymous subclass of Link. Then, you can use onBeforeRender() and onComponentTag() to change how it is displayed each time.
AttributeModifiers (or other behaviors) aren't good for this case because, if you add them in the onClick() method, they will begin stacking on the same link for each click - since they are maintained as part of the Link's state. Your Link can keep track of all manner of state, allowing your onClick() method to enable/disable/change/etc with repeated clicks. You can also override onBeforeRender(), isVisible(), and other methods that are run each time the link is displayed on the page. The constructor, onConfigure(), and others are run just once, regardless of how many times you click the button. |
|||||||||||
|
|
I don't think this is an entirely good idea in Wicket. Of course it could be done by trickery, but it's far simpler to either:
Whichever you choose, the principle is to let Wicket "pull" rendering information in rather than pushing it explicitly. |
|||
|
|
|
I think AjaxCallDecorator should be the class you need to use to disable/change style of the button. |
|||
|
|
|
The problem is that you use Link. Disabled Links use |
||||
|
|
Take a look at SimpleAttributeModifier and AttributeAppender. Depending on your actual requirements one of those should do the trick. SimpleAttributeModifier adds or replaces an attribute of any HTML-Tag that has a prepresentation in wicket (replaces the css class), while AttributeAppender appends to the attributes (adds another css class). This should work for enabling/disabling buttons as well but I haven't tried that. Example:
For Ajax you'll have to add the component to the target as well. More detailed example: Java code:
corresponding HTML:
|
|||||
|
