Revision
47285 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 28 12:56:15 2014 UTC
(4 years, 2 months ago)
by
abogaart
Diff to
previous 44467
CMS7-8499: detect IE11 in YUI 2.9.0
- added if (ua.indexOf('Trident') != -1) check to find ie11
- in minified versions the check is done as the last step (and only if ie ===0) to simplify code merge
Revision
44459 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 4 12:44:12 2014 UTC
(4 years, 10 months ago)
by
abogaart
Diff to
previous 44458
CMS7-7887: Enable ajax updates for the reference editor widget
- Refactored ReferenceEditor to allow for ajax-updates
Revision
44456 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 4 12:29:09 2014 UTC
(4 years, 10 months ago)
by
abogaart
Diff to
previous 44455
CMS7-7883 : No more onblur when you change a property
- Only redraw editor after model references a different node or if the EditorUpdate event is caught
Revision
44452 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 4 11:53:24 2014 UTC
(4 years, 10 months ago)
by
dvandiepen
Diff to
previous 44450
CMS7-7882 Add render head javascript to set focus to the name text fields and select the text when the dialog is rendered.
Revision
44448 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 4 10:16:08 2014 UTC
(4 years, 10 months ago)
by
abogaart
Diff to
previous 44447
CMS7-7880: Pressing up/down in tree should stop moving the tree selection when key is released
- Pressing up&down will only load the editor when key is released
- Focus highlighting is now completely client-side
Revision
36973 -
Directory Listing
-
[select for diffs]
Modified
Mon Nov 19 09:51:12 2012 UTC
(6 years, 3 months ago)
by
jbloemendal
Diff to
previous 36954
CMS7-6392 Regression - CMS throws http status 500 error when user attempts to upload an image (Flash off)
Wrapping possible NullPointerException in a more meaningful WicketRuntimeException.
Revision
36842 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 9 15:40:39 2012 UTC
(6 years, 3 months ago)
by
mdenburger
Diff to
previous 36544
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
36345 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 26 08:41:53 2012 UTC
(6 years, 4 months ago)
by
mmilicevic
Diff to
previous 36333
CMS7-6503: Console improvements
- add help dialog
- multi-delete: don't delete selected root
- don't delete nodes with childnodes by default
Revision
36332 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 25 11:33:55 2012 UTC
(6 years, 4 months ago)
by
mmilicevic
Diff to
previous 36292
CMS7-6503: Console improvements
- add multiple node deletion popup (CTRL + M)
- make Shortcuts be class (instead of interface)
- add missing SerialVersion id's
- change local variable names (avoid aliasing)
Revision
36281 -
Directory Listing
-
[select for diffs]
Modified
Fri Sep 21 09:43:08 2012 UTC
(6 years, 5 months ago)
by
abogaart
Diff to
previous 36279
CMS7-16: Console enhancements
- Open node by path/relpath/uuid dialog
- sort nodes in the tree by name (if not orderable)
- Added simplified api for adding keyboard shortcuts to dialogLinks
- Moved up/down into blue menu bar
Revision
36064 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 5 13:43:22 2012 UTC
(6 years, 5 months ago)
by
mdenburger
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
(6 years, 6 months ago)
by
mdenburger
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
(7 years, 2 months ago)
by
mdenburger
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.