You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -112,6 +122,7 @@ public function setPosition(Position $position) {
112
122
113
123
/**
114
124
* Triggered when the field is blurred, if the value has changed.
125
+
*
115
126
* @param string $jsCode
116
127
* @return $this
117
128
*/
@@ -122,6 +133,7 @@ public function onChange($jsCode) {
122
133
/**
123
134
* Triggered when the menu is hidden.
124
135
* Not every close event will be accompanied by a change event.
136
+
*
125
137
* @param string $jsCode
126
138
* @return $this
127
139
*/
@@ -134,6 +146,7 @@ public function onClose($jsCode) {
134
146
* The default action is to replace the text field's value with the value of the focused item,
135
147
* though only if the event was triggered by a keyboard interaction.
136
148
* Canceling this event prevents the value from being updated, but does not prevent the menu item from being focused.
149
+
*
137
150
* @param string $jsCode
138
151
* @return $this
139
152
*/
@@ -143,6 +156,7 @@ public function onFocus($jsCode) {
143
156
144
157
/**
145
158
* Triggered when the suggestion menu is opened or updated.
159
+
*
146
160
* @param string $jsCode
147
161
* @return $this
148
162
*/
@@ -154,6 +168,7 @@ public function onOpen($jsCode) {
154
168
* Triggered after a search completes, before the menu is shown.
155
169
* Useful for local manipulation of suggestion data, where a custom source option callback is not required.
156
170
* This event is always triggered when a search completes, even if the menu will not be shown because there are no results or the Autocomplete is disabled.
171
+
*
157
172
* @param string $jsCode
158
173
* @return $this
159
174
*/
@@ -164,6 +179,7 @@ public function onResponse($jsCode) {
164
179
/**
165
180
* Triggered before a search is performed, after minLength and delay are met.
166
181
* If canceled, then no request will be started and no items suggested.
182
+
*
167
183
* @param string $jsCode
168
184
* @return $this
169
185
*/
@@ -175,6 +191,7 @@ public function onSearch($jsCode) {
175
191
* Triggered when an item is selected from the menu.
176
192
* The default action is to replace the text field's value with the value of the selected item.
177
193
* Canceling this event prevents the value from being updated, but does not prevent the menu from closing.
0 commit comments