[ { "name": "Welcomes", "list": [ { "title": "Single Select", "url": "single-row.html", "description": "Single select without any options." }, { "title": "Multiple Select", "url": "basic.html", "description": "Multiple select without any options." }, { "title": "Multiple Items", "url": "multiple-items.html", "description": "Use multiple and multipleWidth options to enable multiple items." }, { "title": "Auto Width", "url": "auto-width.html", "description": "Auto width by default without setting width style." }, { "title": "Disabled Select", "url": "disabled.html", "description": "Show a disabled select width disabled attribute." }, { "title": "Selected/Disabled Options", "url": "selected-disabled.html", "description": "Selected or Disabled options." }, { "title": "Submit Select", "url": "submit-select.html", "description": "Submit select with name attribute in form." }, { "title": "The Data", "url": "data.html", "description": "Use data as data source." }, { "title": "The Locale", "url": "locale.html", "description": "Use locale to set the locale." }, { "title": "Large Select", "url": "large-select.html", "description": "Large select with filter." }, { "title": "V-Model", "url": "v-model.html", "description": "Multiple select with v-model." }, { "title": "The Themes", "url": "themes.html", "description": "Multiple select with bootstrap theme." } ] }, { "name": "Options", "list": [ { "title": "The Placeholder", "url": "placeholder.html", "description": "Use placeholder attribute or placeholder: \\'\\' option to set placeholder." }, { "title": "Single Radio", "url": "single-radio.html", "description": "Use singleRadio: true to show the radio input." }, { "title": "Hide Select All", "url": "hide-select-all.html", "description": "Use selectAll: false to hide select all." }, { "title": "Hide Optgroup Check", "url": "hide-optgroup-checkboxes.html", "description": "Use hideOptgroupCheckboxes: true option to hide the optgroup checkboxes." }, { "title": "Custom Dropdown Width", "url": "custom-dropdown-width.html", "description": "Use dropWidth: 580 option to custom the dropdown width." }, { "title": "Max Height", "url": "max-height.html", "description": "Use maxHeight: 140 option to custom the dropdown max height." }, { "title": "Max Height Unit", "url": "max-height-unit.html", "description": "Use maxHeightUnit: \\'row\\' option to set the max height unit." }, { "title": "The Position", "url": "position.html", "description": "Use position: \\'top\\' to set the select dropdown in top position." }, { "title": "Display Values", "url": "display-values.html", "description": "Use displayValues: true option to display selected values instead text." }, { "title": "Display Title", "url": "display-title.html", "description": "Use displayTitle: true option to display title of selected text." }, { "title": "Display Delimiter", "url": "display-delimiter.html", "description": "Use displayDelimiter: \\' | \\' option to custom the display delimiter." }, { "title": "Minimum Count Selected", "url": "minimum-count-selected.html", "description": "Use minimumCountSelected: 8 option and the %s of %s selected will be shown only if more than 8 items where selected." }, { "title": "The Ellipsis", "url": "ellipsis.html", "description": "Use ellipsis: true option to display ... after selected options instead of %s of %s selected." }, { "title": "Is Open", "url": "is-open.html", "description": "Use isOpen: true to open the dropdown by default." }, { "title": "Keep Open", "url": "keep-open.html", "description": "Use keepOpen: true to keep the select dropdown always open." }, { "title": "Open On Hover", "url": "open-on-hover.html", "description": "Use openOnHover: true to open the select dropdown by hover instead of click." }, { "title": "The Container", "url": "container.html", "description": "Use container option to solve the cut off problem for example parent node is overflow: hidden." }, { "title": "The Filter", "url": "filter.html", "description": "Use filter: true to enable filter feature." }, { "title": "Filter Only Optgroup", "url": "filter-group.html", "description": "Use filterGroup: true to filter optgroups only and not options." }, { "title": "Filter Placeholder", "url": "filter-placeholder.html", "description": "Use filterPlaceholder: \\'The filter placeholder\\' to set the filter placeholder." }, { "title": "Filter Accept On Enter", "url": "filter-accept-on-enter.html", "description": "Use filterAcceptOnEnter: true option to speed up keyboard use. Enter filter text and then hit enter or space will auto click select all and close the dropdown." }, { "title": "Filter By Data Length", "url": "filter-by-data-length.html", "description": "Use filterByDataLength: 10 option to auto enable filter when the data length is more than 10." }, { "title": "Custom Filter", "url": "custom-filter.html", "description": "Use customFilter to custom filter, in this case we filter by startWith." }, { "title": "Show Clear", "url": "show-clear.html", "description": "Use showClear to show the clear icon to uncheck all selected items." }, { "title": "The Animate", "url": "animate.html", "description": "Use animate to define the animate of open or close the dropdown." }, { "title": "The Styler", "url": "styler.html", "description": "Use styler to custom the item style." }, { "title": "Text Template", "url": "text-template.html", "description": "Use textTemplate to custom the text template." }, { "title": "Label Template", "url": "label-template.html", "description": "Use labelTemplate to custom the optgroup label template." } ] }, { "name": "Methods", "list": [ { "title": "The getOptions", "url": "getOptions.html", "description": "Use multipleSelect(\\'getOptions\\') to get the options object." }, { "title": "The refreshOptions", "url": "refreshOptions.html", "description": "Use multipleSelect(\\'refreshOptions\\', {}) to refresh the options object." }, { "title": "The setSelects/getSelects", "url": "setSelects-getSelects.html", "description": "Use multipleSelect(\\'setSelects\\', []) and multipleSelect(\\'getSelects\\') to set selects and get selects." }, { "title": "The enable/disable", "url": "enable-disable.html", "description": "Use multipleSelect(\\'enable\\') and multipleSelect(\\'disable\\') to enable and disable select." }, { "title": "The open/close", "url": "open-close.html", "description": "Use multipleSelect(\\'open\\') and multipleSelect(\\'close\\') to open and close the select dropdown list." }, { "title": "The check/uncheck", "url": "check-uncheck.html", "description": "Methods: multipleSelect(\\'check\\', 2) and multipleSelect(\\'uncheck\\', 2) to check and uncheck a select option." }, { "title": "The checkAll/uncheckAll", "url": "checkAll-uncheckAll.html", "description": "Use multipleSelect(\\'checkAll\\') and multipleSelect(\\'uncheckAll\\') to check and uncheck all options." }, { "title": "The checkInvert", "url": "checkInvert.html", "description": "Methods: $select.multipleSelect(\\'checkInvert\\') to invert check all items." }, { "title": "The focus/blur", "url": "focus-blur.html", "description": "Use multipleSelect(\\'focus\\') and multipleSelect(\\'blur\\') to focus and blur the select." }, { "title": "The refresh", "url": "refresh.html", "description": "Use multiple(\\'refresh\\') to refresh/reload the Multiple Select. If you\\'re dynamically adding/removing option tags on the original select via AJAX or DOM manipulation methods, call refresh to reflect the changes." }, { "title": "The destroy", "url": "destroy.html", "description": "Use multiple(\\destroy\\') to destroy the select." } ] }, { "name": "Events", "list": [ { "title": "The Events", "url": "events.html", "description": "Multiple Select has some callback events." } ] }, { "name": "I18N", "list": [ { "title": "The i18n", "url": "i18n.html", "description": "Custom i18n options." } ] } ]