selectize.js Questions

12

Solved

I have a form from which I would like to copy some default values into the inputs. The form inputs are using the selectize.js plugin. I would like to set some of the form values programatically. Th...
Ledeen asked 22/2, 2014 at 23:35

7

How can I write a capybara integration test with a form using jquery.selectize? I'd like to test a user entering a couple of values.
Augusto asked 29/4, 2014 at 17:55

1

Is it possible to add a checkbox to the option renderers so that users can select and deselect the item by clicking on the checkbox. I was able to add the checkbox by adding <input type = "ch...
Magaretmagas asked 9/2, 2015 at 7:54

4

I'm using Selectize.js and I need to clone html subform with transformed select elements. After I clone and insert subform select functionality is broken. I have read that one of the solution is t...
Gooseherd asked 7/1, 2015 at 19:9

2

Solved

I currently have a selectize drop-down that is suppose to have some options in it disabled and hidden depending on a list of strings that I have. Here is the non-selectize javascript function that ...
Joslin asked 9/10, 2018 at 16:39

5

Solved

I am trying to use Selectize to render a dropdown of very long labels. The text can be pretty wide, but the input has a constraint on width. Selectize perfectly wraps the text (in both the input an...
Dissonant asked 21/8, 2015 at 20:0

5

Solved

I have a web application with multiple Selectize objects initialized on the page. I'm trying to have each instance load a default value based on the query string when the page loads, where ?<obj...
Tabernacle asked 14/6, 2016 at 18:51

5

I want to limit minimum 3 characters for Selectize tags input. Is it possible? is there any event in selectize?
Luau asked 1/7, 2015 at 7:28

8

Solved

I want add some items to a selectized input after user clicks on a button. The input data are loaded via Ajax. When I call addItem(value) no thing happens. But if I try to type some string in the i...
Dutch asked 1/12, 2013 at 9:22

2

Solved

Good Day! I have a dropdown select using "selectize" plug-in. how can I set dropdown contents height base on screen height, since I have many items in my dropdown select, it would be nice to pres...
Fyke asked 6/10, 2017 at 19:58

2

Solved

In an RShiny app, I am receiving the warning message Warning message: The select input "the_input_id" contains a large number of options; consider using server-side selectize for massivel...
Whelk asked 25/2, 2021 at 22:19

1

Solved

I want to include font-awesome icons in the items of a Shiny selectizeInput. How could I do?
Apportionment asked 24/7, 2021 at 11:20

2

Solved

I'm trying to find a way to set a default value in selectize.js. I know that in jQuery you can use: $(".country").val("US"); But this doesnt work with Selectize. I already read the API documen...
Chabot asked 16/9, 2014 at 14:6

4

Solved

I was using Selectize.js in a select box, What i need is, if an item is not in the list of options i would need to add a new item. When new item is added, i want to have an ajax call to update the ...
Haroldson asked 23/6, 2014 at 12:48

5

Solved

I have a selectize.js drop-down, which loads a list of items from the server using ajax. The server provides an autocomplete from the given string, so I don't need selectize's native filtering. Bes...
Arne asked 3/9, 2015 at 14:50

9

I've tried this: var eventHandler = function() { return function() { console.log($select.val()); }; }; var $select = $('.selectize').selectize({ create : true, onChange : eventHandler() }); ...
Borras asked 2/8, 2014 at 0:47

5

Solved

I was wondering, how could I get the value of the currently selected item in my Selectize.js input? I have checked the documentation and scoured everything selectize.js related on Stackoverflow but...
Baldachin asked 10/7, 2014 at 1:51

3

I know how to set the optionList on Initiliaztion but how do I set it programmatically? I have an inviteList array: $("#select-invite").options(inviteList);
Blamed asked 10/12, 2013 at 15:2

4

Solved

I'm using selectize.js to style text boxes, and it's working fine. $("select[name='somename']").selectize({ valueField: 'id', labelField: 'name', searchField: 'name', options: selectableThing...
Seesaw asked 25/9, 2013 at 15:59

2

Solved

How can i call a function inside onChange of selectize? onChange: function(value){ weatherWidget(value) } $(document).ready(function() { function weatherWidget(location){ console.log('test'); ...
Kirkpatrick asked 1/7, 2015 at 8:33

4

Solved

This is the very simple modal window that I am using to select a task. <div id="add_task_modal" class="modal fade" tabindex="-1" role="dialog"> <di...
Illfavored asked 18/8, 2020 at 14:48

5

Solved

Focusing on a select box (that has selectize enabled) does not focus on the selectized input box: $('.someclass select').focus(); Focusing on selectize's own inout box doesn't seem to work eithe...
Wolsey asked 19/12, 2014 at 12:34

4

I have implemented Selectize on my HTML form. However a dropdown only becomes active when the "enable" checkbox is clicked. I know there is a disable property on the Selectize object but ...
Ramadan asked 2/12, 2014 at 19:3

6

hello all i am using selectize plugin to create tags to my site everything is good except that the drop down item gets overlapped by my other divs. i want them to behave like select items which ar...
Valued asked 11/11, 2015 at 19:36

3

I have a select with several options and I try to make some of the options unselectable programmatically. For instance, my code is : <select> <option value="1">Value 1</option> ...
Ehlke asked 13/12, 2013 at 13:55

© 2022 - 2024 — McMap. All rights reserved.