*Plugin somado ao Plugin jQuery Select2.
-
Importe os arquivos jQuery, Select2 e o arquivo de tradução do Select2:
<!-- jQuery include --> <script src="https://code.jquery.com/jquery-3.1.0.min.js"></script> <!-- Select2 jQuery Plugin include --> <script src="./select2-4.0.3/dist/js/select2.min.js"></script> <!-- arquivo de tradução Select2 include --> <script src="./select2-4.0.3/dist/js/i18n/pt-BR.js"></script>
-
Importe o arquivo jquery.simpleSelect2Json.js:
<!-- simpleSelect2Json jQuery Plugin include --> <script src="jquery.simpleSelect2Json.js"></script>
-
Inicialize o componente
<select>
da seguinte forma:
src
- Deve receber uma string contendo um Array JSON serializado ou uma URL para uma requisição get;key
- Deve receber a propriedade do objeto JSON que representará a propriedadevalue
da tag<option>
;text
- Deve receber a propriedade do objeto JSON que representará o texto que representará a opção dentro do componente<select>
;
$('select').simpleSelect2Json(src,key,text);