Revision
36842 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 9 15:40:39 2012 UTC
(9 years, 6 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 36246
WICKETEXTJS-45: add onRenderProperties to ExtObservable
Like ExtComponent, subclasses of ExtObservable can now override onRenderProperties to add their own properties. Resource bundles with the same class name as the ExtObservable are added automatically in the property 'resources'.
Revision
36064 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 5 13:43:22 2012 UTC
(9 years, 8 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 35822
WICKETEXTJS-43: removed Maven-related build warnings
- set source encoding to UTF8
- use maven-resources-plugin version 2.6 (fixed MRESOURCES - 140)
- skip aspectj processing of test sources (was redundant, and removes a warning that there are no sources)
Also fixed indentation.
Revision
35442 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 27 12:33:30 2012 UTC
(9 years, 9 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 35196
WICKETEXTJS-41: do not explicitly call Ext.fireDocReady() for each registered Ext.onChange() callback
Instead, rely on the automatic docReady event by Ext, which is done after all Ext.onChange() callbacks have been processed. This ensures that the registered callbacks are invoked in the same order as they appear in the response, also in Firefox in IE.
Revision
31907 -
Directory Listing
-
[select for diffs]
Modified
Fri Dec 16 12:25:19 2011 UTC
(10 years, 5 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 30888
WICKETEXTJS-34: added ActionFailedException to throws declaration of createRecord and updateRecord.
Both methods can throw the ActionFailedException when something went wrong while creating or updating. This returns an error message to the client with the 'message' property set to the exception's message. The old createResponse method is deprecated, but still tried first to remain backwards compatible.
Revision
29870 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 25 14:29:59 2011 UTC
(10 years, 9 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 29854
WICKETEXTJS-25: removed deprecation from the ExtEventAjaxBehavior() constructor, as it is still a valid use case to generate a callback without any parameters. Also removed a '&' from the callback URL when an event callback does not have any parameters (which caused a warning in the Tomcat logs: 'WARNING: Parameters: Invalid chunk ignored.')
Revision
29852 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 25 09:08:57 2011 UTC
(10 years, 9 months ago)
by
mdenburger
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 29204
WICKETEXTJS-25: removed warning from getParameters() and added a new constructor that accepts the array of parameter names. The old parameter-less constructor still results in the same old behavior (let getParameters() return null), but has been marked as deprecated.
Revision
29124 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 21 14:03:20 2011 UTC
(10 years, 10 months ago)
by
jbloemendal
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 29057
WICKETEXTJS-23 Wait for the default ext css theme to be rendered, before render the ext components
- bumped wicket to patched version
- changed ext theme to ensure the css is render, before the js head contributions are processed
Revision
29057 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 19 15:21:18 2011 UTC
(10 years, 10 months ago)
by
fvlankvelt
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 28859
WICKETEXTJS-22: theme customization inheritance
- only add the ext-all-notheme to the top-most theme behavior, preventing overriding customized css rules
- only add the theme behavior to the ext root when there is no ancestor with an ext theme
Revision
28815 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 6 19:20:49 2011 UTC
(10 years, 10 months ago)
by
fvlankvelt
Original Path:
experimental/forks/wicket-extjs
Diff to
previous 28809
WICKETEXTJS-20: extract the ExtEventAjaxBehavior from the ExtComponent
Subclasses can provide the "interesting" parameters, e.g. skipping the standard
ExtJS Component argument. These are then made available to the listener as
a map of (json) objects.
The implementation should be backwards compatible, with the caveat that the
ExtEventListener changed from an interface to an (abstract) class. This should
make it more future-proof, handling the upgrade path in the implementation.