|
Content with label gem in codesmell (See content from all spaces)
Related Labels:
wicket, java, anchor, javascript, editor, richtexteditor
Another Richtext-editor in Wicket called NicEdit
Just another Gem from the WicketMailinglist: \Update: see comments for updated Version\ francisco.treacy wrote: i thought i'd like to share a simple behaviour for NicEdit (http://nicedit.com/). to use it, just download nicedit and modify NICEDITJAVASCRIPT and NICEDITICONS accordingly ...
Other labels:
wicket, javascript, editor, richtexteditor
|
AnchoredBookmarkablePageLink
Another Wicket Gem. Obvious but helpful. import org.apache.wicket.PageParameters; import org.apache.wicket.markup.ComponentTag; import org.apache.wicket.markup.html.link.BookmarkablePageLink; import org.apache.wicket.model.IModel; / @author Thijs Vonk / public class AnchoredBookmarkablePageLink extends BookmarkablePageLink { private static final long serialVersionUID = 1L; private IModel stringAnchor ...
Other labels:
wicket, anchor
|
Wicket DropDownChoice with eye-candy
thinking twice, ajaxindicators are not at all eyecandy, but useful from an usablity perspective. / Adds an AJAXIndicator to DropDownChoice @author Eyal Golan / class DropDownChoiceWithAjaxIndicator extends DropDownChoice implements IAjaxIndicatorAware { private static final long serialVersionUID = 1365817942506006686L; private ...
Other labels:
wicket, java
|
Wicket Breadcrumbs
template for using a Breadcrumblike Navigation really shows the beauty of stateful pages that separate wicket from those countless templatebased frameworks. / Provides a list of Breadcrumbs. THIS IS ONLY A TEMPLATE. DO NOT USE UNMODIFIED @author igor vaynberg / public abstract class ...
Other labels:
wicket, java
|
Wicket DropDownIdChoice
one is all about id <> object mapping when using DropDowns: / @author igor vaynberg / public class DropDownIdChoice extends DropDownChoice { public DropDownIdChoice(String id, IModel model, IModel choices, IChoiceRenderer renderer, Class<?> type) @Override ...
Other labels:
wicket, java
|
Wicket ResubmitSafeForm
Another little gem: / Form that divides submitevents to inital and resubmit. @author igor vaynberg / abstract class ResubmitSafeForm extends Form { private boolean submitted; private static final long serialVersionUID = 1L; public ResubmitSafeForm(final String id ...
Other labels:
wicket, java
|
Wicket TextLink
Another very simple, yet incredibly helpful snippet: / Simple Link that renders its Model as a textual body @author Al Maw / abstract class TextLink extends Link { public TextLink(final String id, final IModel model ...
Other labels:
wicket, java
|
Wicket Gems
happens quite often that, while browsing the Wicket mailing list, i stumble upon gems, that i fail to find or even remember when i could use them. this really has to stop :) the problem is: there is of course no commen theme about ...
Other labels:
wicket, java
|
|
|