...
Support jsr 286 portlet specification:
-See this issue for Portlet 2.0 related issues: -
-https://issues.apache.org/jira/browse/WICKET-1620-
Update: Portlet support has been dropped for Wicket 1.5 WICKET-2976
...
Code Block |
---|
/** * @param <DataType> * @param formComponent * @return DataType */ public static <DataType> DataType getFreshValue(FormComponent<DataType> formComponent) { return (DataType) formComponent.getConverter(formComponent.getType()).convertToObject(formComponent.getValue(), formComponent.getLocale()); } |
-
Done in 1.5.
Integrate more widgets
A component framework like Wicket lives on the compents it provides. A rich set of easy to use gui components would increase Wickets popularity.
See https://github.com/wicketstuff/core
Add LabelLink
...
See AbstractLink#setBody(IModel)
Accelerate Serialization
-Serialization is heavy used in wicket, therefore it would be good to accelerate it with JBossSerialization. It should be at least as twice as fast as default serialization.
See https://issues.apache. org/jira/browse/WICKET-3778-See org.apache.wicket.serialize.ISerializer and IFrameworkSettings.setSerializer(). With these tools you are welcome to implement any custom serialization strategy.
...
Effort to this effect has already been started, and proved working and very useful:https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/scala-extensions-parent/
Separate Examples
...
Consider using enumerations etc.
Also IVisitor.CONTINUE_TRAVERSAL
and String NO_RAW_INPUT = "
-NO-RAW-INPUT-
"
etc. could be more OOD.
...
You may want to look at wicketstuff-merged-resources.
See http://www.wicket-library.com/wicket-examples/resourceaggregation
Sprites/ImageBundle for wicket.
...