Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 07bc0de

Browse files
authored
Fixed anchor name headers
1 parent dbe2017 commit 07bc0de

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guides/v2.2/javascript-dev-guide/widgets/widget-multiselect.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ The Multiselect methods are the following:
162162
- [loadOptions()](#loadoptions)
163163
- [setCurrentPage()](#setcurrentpage)
164164

165-
### `appendOptions(options)`
165+
### `appendOptions`
166166

167167
The method appends multi-select items to the multi-select.
168168

@@ -172,7 +172,7 @@ Code example:
172172
$('#multiselect').multiselect2('appendOptions', [{"value": "1", "label": "Label #1"}, {"value": "2", "label": "Label #2"}]);
173173
```
174174

175-
### `clearMultiselectOptions()`
175+
### `clearMultiselectOptions`
176176

177177
The method removes all multi-select items.
178178

@@ -182,15 +182,15 @@ Code example:
182182
$('#multiselect').multiselect2('clearMultiselectOptions');
183183
```
184184

185-
### `getCurrentPage()`
185+
### `getCurrentPage`
186186

187187
The method returns the number of the current page.
188188

189189
```javascript
190190
$('#multiselect').multiselect2('getCurrentPage');
191191
```
192192

193-
### `getSearchCriteria()`
193+
### `getSearchCriteria`
194194

195195
The method returns the trimmed value of the search input.
196196

@@ -200,7 +200,7 @@ Code example:
200200
$('#multiselect').multiselect2('getSearchCriteria');
201201
```
202202

203-
### `isOptionsLoaded(options)`
203+
### `isOptionsLoaded`
204204

205205
The method checks if all multi-select items are already loaded.
206206

@@ -210,7 +210,7 @@ $('#multiselect').multiselect2('isOptionsLoaded', [{"value": "2", "label": "Labe
210210

211211
This method returns `true` if multiple selection items are loaded, and it returns `false` if they are not loaded.
212212

213-
### `loadOptions()`
213+
### `loadOptions`
214214

215215
The method loads the next page with multi-select items from [nextPageUrl](#nextpageurl) according to the [search criteria](#getsearchcriteria).
216216
The multi-select items from the Ajax response are appended to the multi-select.
@@ -221,7 +221,7 @@ Code example:
221221
$('#multiselect').multiselect2('loadOptions');
222222
```
223223

224-
### `setCurrentPage(page)`
224+
### `setCurrentPage`
225225

226226
The method configures the current page number.
227227

0 commit comments

Comments
 (0)