A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.npmjs.com/package/selectpage below:

selectpage - npm

SelectPage

A simple style and powerful selection jQuery plugin, including ajax remote data, autocomplete, pagination, tags, i18n and keyboard navigation features

Examples and Documentation

Explorer on

简体中文文档

The Vuejs version: v-selectpage

Features Browsers support Plugin Preview

Multiple Selection with Tags form

Regular select mode ( single selection )

List only ( pagination bar close, disable typing to quick search, select only )

Installation

Download SelectPage plugin zip file by last release, or click me to download SelectPage

or use NPM

Usage

As you can see in the Demo Page, you will need to include:

Including files
<!-- jQuery library -->
<script type="text/javascript" src="jquery.min.js" ></script>

<link rel="stylesheet" href="selectpage.css" type="text/css">
<script type="text/javascript" src="selectpage.js" ></script>
HTML input element set

the SelectPage plugin just need put a input tag in the page

<input type="text" id="selectpage" >
Javascript init plugin
// defined a array (the server side returned data format was same like that)
// Array[{Object},{...}]
var data = [
  {id: 1, name: 'Chicago Bulls', desc: '芝加哥公牛' },
  {id: 2, name: 'Cleveland Cavaliers', desc: '克里夫兰骑士' },
  {id: 3, name: 'Detroit Pistons', desc: '底特律活塞' },
  {id: 4, name: 'Indiana Pacers', desc: '印第安纳步行者' }
]
// init SelectPage
$('#selectpage').selectPage({
  showField : 'desc',
  keyField : 'id',
  data : data
})
Stargazers over time

Options

The plugin initialize options

data

data source (string:ajax search URL | object:JSON format array)

// serverside request url address
$('#selectpage').selectPage({
  data: 'https://some-site/some-route'
})

// JSON format array
var data = [{a:1,b:2,c:3},{...}]
$('#selectpage').selectPage({
  data: data
})
lang

plugin language

code language cn chinese en english de german es spanish ja japanse pt-br Brazilian Portuguese multiple

whether it is multi-select mode(use tags mode)

pagination

paging or not

listSize

the list shows the number of items, and the other items are displayed in a scroll bar,it only work on pagination : false

multipleControlbar

whether to enable the multi-select mode control button area,only work on multiple: true

maxSelectLimit

maximum number of selections in multi-select mode,0 is unlimited

selectToCloseList

is close list after item select,it only work on multiple:true

initRecord

the initial value of the plugin, The value will match the option.keyField field, and if it matches, it will be automatically selected and highlighted

dbTable

use this parameter to set the corresponding data table name in server side(ajax) mode

keyField

value field, usually the contents of the field will be automatically saved in the hidden domain

showField

the result is used to display the name of the attribute

searchField

query field, set server side query field when data source is server side mode, if not set default use of option.showField

andOr

multiple keywords search type ('AND' or 'OR')

orderBy

result data sort type, default use showField specified field

$('#selectpage').selectPage({
  ...
  orderBy : ['id desc'] // use id field sort desc
})
pageSize

the number of records per page

params

send request params for server side data source(ajax)

$('#selectpage').selectPage({
  ...
  params : function() {
    return {
      name: 'aa',
      sex: 1
    }
  }
})
formatItem

list item display content formatting

$('#selectpage').selectPage({
  ...
  formatItem : function(data) {
    return data.a + '(' + data.b + ')'
  }
})
focusDropList

when input box get focus,drop the list

autoSelectFirst

whether to automatically select the first item in the list (enter the keyword query mode, use the mouse directly does not trigger)

autoFillResult

whether to automatically fill the content, if the list item is highlighted, in the focus away from the control, automatically set the item for the selected content

noResultClean

enter the keyword to query and no item match,when focus leave plugin,whether to clear enter keywords

selectOnly

select only mode,the input box can not enter any word

inputDelay

enter the keyword query delay, work on server side(ajax) mode

eSelect

item selected callback

$('#selectpage').selectPage({
  ...
  eSelect : function(data) {
    console.log(data)
  }
})
eOpen

before show up result list callback

$('#selectpage').selectPage({
  ...
  eOpen : function(self) {
    console.log(data)
  }
})
eAjaxSuccess

in server side mode, this is the callback function when request success, the role of the callback is used to custom processing of the return data

server side return data for example

{
  "values": {
    "gridResult": {
      "pageSize": 10,
      "pageNumber": 1,
      "totalRow": 11,
      "totalPage": 2,
      "listData": [
        { "name": "name1", "id": "1" },
        { "name": "name2", "id": "2" },
        { ... }
      ]
    }
  }
}

eAjaxSuccess required data format

{
  list: object[],  // rows data
  totalRow: number // total record count number
}

then eAjaxSuccess code for example below

$('#selectpage').selectPage({
  ...
  data: 'https://some-site/some-route',
  eAjaxSuccess : function(data) {
    var dataNode = data.values.gridResult
    return {
      list : dataNode.listData,
      totalRow : dataNode.totalRow
    }
  }
})
eTagRemove

this callback function is used to close tag, when multiple : true

$('#selectpage').selectPage({
  ...
  eTagRemove : function(removeCount) {
    console.log(removeCount)
  }
})
API selectPageClear

clear all select items

$('#selectpage').selectPageClear()
selectPageRefresh

refresh plugin selected items info

$('#selectpage').val(20) // modify selected by id used javascript
$('#selectpage').selectPageRefresh() // refresh selection item info
selectPageData

change plugin data source,only work on json data source mode

var newdata = [
  { a: 1, b: 11, c: 111 },
  { a: 2, b: 22, c: 222 },
  { ... }
]
$('#selectpage').selectPageData(newdata)
selectPageDisabled

get plugin disabled status or set plugin status to disabled / enabled

// get plugin disabled stuats
if($('#selectpage').selectPageDisabled()) {
  // set plugin to enabled
  $('#selectpage').selectPageDisabled(false)
}
selectPageText

get plugin selected items text

alert($('#selectpage').selectPageText())
selectPageSelectedData

get selected items raw data

console.log($('#selectpage').selectPageSelectedData())
License


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4