aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/autocomplete
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/autocomplete')
-rw-r--r--node_modules/montage/ui/autocomplete/autocomplete.reel/autocomplete.js15
-rw-r--r--node_modules/montage/ui/autocomplete/results-list.reel/results-list.html11
2 files changed, 13 insertions, 13 deletions
diff --git a/node_modules/montage/ui/autocomplete/autocomplete.reel/autocomplete.js b/node_modules/montage/ui/autocomplete/autocomplete.reel/autocomplete.js
index c9cbca74..4e2dd82e 100644
--- a/node_modules/montage/ui/autocomplete/autocomplete.reel/autocomplete.js
+++ b/node_modules/montage/ui/autocomplete/autocomplete.reel/autocomplete.js
@@ -70,7 +70,6 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
70 70
71 _delay: {value: null}, 71 _delay: {value: null},
72 delay: { 72 delay: {
73 distinct: true,
74 get: function(){ 73 get: function(){
75 return this._delay; 74 return this._delay;
76 }, 75 },
@@ -81,7 +80,8 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
81 } 80 }
82 this._delay = value; 81 this._delay = value;
83 } 82 }
84 } 83 },
84 serializable: true
85 }, 85 },
86 86
87 /** 87 /**
@@ -89,7 +89,8 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
89 * Default = 2 89 * Default = 2
90 */ 90 */
91 minLength: { 91 minLength: {
92 value: null 92 value: null,
93 serializable: true
93 }, 94 },
94 95
95 _tokens: {value: null}, 96 _tokens: {value: null},
@@ -104,8 +105,7 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
104 }, 105 },
105 modify: function(v) { 106 modify: function(v) {
106 this._tokens = v; 107 this._tokens = v;
107 }, 108 }
108 distinct: true
109 }, 109 },
110 110
111 // overridden here to get the substring/searchString 111 // overridden here to get the substring/searchString
@@ -241,7 +241,6 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
241 241
242 _suggestedValue: {value: null}, 242 _suggestedValue: {value: null},
243 suggestedValue: { 243 suggestedValue: {
244 distinct: true,
245 enumerable: false, 244 enumerable: false,
246 get: function() { 245 get: function() {
247 return this._suggestedValue; 246 return this._suggestedValue;
@@ -443,7 +442,9 @@ var Autocomplete = exports.Autocomplete = Montage.create(TextInput, {
443 fn.call(this); 442 fn.call(this);
444 443
445 if (!this._valueSyncedWithInputField) { 444 if (!this._valueSyncedWithInputField) {
446 this.value = this.tokens.join(this.separator); 445 if(this.tokens) {
446 this.value = this.tokens.join(this.separator);
447 }
447 if(this.value && this.value.charAt(this.value.length-1) != this.separator) { 448 if(this.value && this.value.charAt(this.value.length-1) != this.separator) {
448 this.value += this.separator; 449 this.value += this.separator;
449 } 450 }
diff --git a/node_modules/montage/ui/autocomplete/results-list.reel/results-list.html b/node_modules/montage/ui/autocomplete/results-list.reel/results-list.html
index 2f904d62..c40d36ce 100644
--- a/node_modules/montage/ui/autocomplete/results-list.reel/results-list.html
+++ b/node_modules/montage/ui/autocomplete/results-list.reel/results-list.html
@@ -9,21 +9,20 @@
9{ 9{
10 10
11 "results": { 11 "results": {
12 "prototype": "montage/ui/controller/array-controller", 12 "prototype": "ui/controller/array-controller",
13 "properties": { 13 "properties": {
14 "selectObjectsOnAddition": true, 14 "selectObjectsOnAddition": true,
15 "automaticallyOrganizeObjects": true 15 "automaticallyOrganizeObjects": true
16 } 16 }
17 }, 17 },
18 "repetition1": { 18 "repetition1": {
19 "prototype": "montage/ui/repetition.reel", 19 "prototype": "ui/repetition.reel",
20 "properties": { 20 "properties": {
21 "element": { 21 "element": {
22 "#": "repetition1" 22 "#": "repetition1"
23 }, 23 },
24 "contentController": {"@": "results"}, 24 "contentController": {"@": "results"},
25 "isSelectionEnabled": true, 25 "isSelectionEnabled": true
26 "orientation": "vertical"
27 }, 26 },
28 "bindings": { 27 "bindings": {
29 "contentController": {"<-": "@owner.contentController"}, 28 "contentController": {"<-": "@owner.contentController"},
@@ -32,7 +31,7 @@
32 }, 31 },
33 32
34 "resultItem": { 33 "resultItem": {
35 "prototype": "montage/ui/autocomplete/result-item.reel", 34 "prototype": "ui/autocomplete/result-item.reel",
36 "properties": { 35 "properties": {
37 "element": {"#": "result-item"} 36 "element": {"#": "result-item"}
38 }, 37 },
@@ -43,7 +42,7 @@
43 }, 42 },
44 43
45 "owner": { 44 "owner": {
46 "prototype": "montage/ui/autocomplete/results-list.reel", 45 "prototype": "ui/autocomplete/results-list.reel",
47 "properties": { 46 "properties": {
48 "element": {"#": "results-list"} 47 "element": {"#": "results-list"}
49 } 48 }