-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 2.1.3
-
Fix Version/s: 2.3.1
-
Component/s: Selectivity
-
Tags:
-
Browser:
-
Sprint:nxNS Sprint 10.1.4
In https://github.com/nuxeo/nuxeo-ui-elements/blame/master/widgets/nuxeo-selectivity.html#L363 there seems to be a misused of data:
if (this.data) { options.data = this.data; } else { options.query = function(query) { if (query.term.length < this.minChars) { query.error("Please enter " + this.minChars + " or more character"); return; } // debounce requests this.debounce('_selectivityQuery', function() { this._query(query); }.bind(this), 300); }.bind(this); }
above it looks like being used to populate the available choices but according to https://arendjr.github.io/selectivity/ we are actually initializing the selection.
- is duplicated by
-
ELEMENTS-480 nuxeo-selectivity.data must map consistently to selectivity.[data or items]
- Resolved
- is required by
-
NXS-3783 Integrate application definition screen in place of application dependencies screen
- Resolved