selectize.js Questions
6
Solved
I have a selectize.js dropdown and I have to clear the selected value .
I have tried this (as suggested in another question):
var selectize = $("#optionNetFlow")[0].selectize;
selectize.clear();
...
Pavilion asked 14/11, 2014 at 5:50
7
Solved
I want to change the caret icon in selectize.js to be like bootstrap's (glyphicon-menu) as shown in the image below:
I am using (selectize.bootstrap3.css) and tried to play with this css file bu...
Woo asked 8/6, 2015 at 9:27
5
Solved
I'm trying to make a custom select box using selectize.js. So far it was easy to configure and the API supports about everything. The last thing I need to do is disable the option to remove items p...
Superpatriot asked 5/2, 2014 at 16:18
10
Solved
I want to change placeholder of a dropdown created by selectize.js when the parent dropdown changes its selection to load the options of the dropdown whose placeholder to be changed. There is no me...
Conjunct asked 2/10, 2013 at 17:44
2
Solved
the question can maybe be stupid but did not find the answer till now.
I'm trying to include a library from node_modules, from what I've learn since yesterday we should include like that with asset...
Lowrance asked 19/8, 2018 at 14:58
1
Solved
I updated my Shiny library to version 1.1.0 and I noticed some very strange behavior with selectInput/selectizeInput and observeEvent/eventReactive.
The problem occurs when I press backspace and ...
Longeron asked 17/8, 2018 at 15:32
2
Solved
I'm having a hard time figuring out how to combine Selectize.js with a belongs_to association in rails. I want to do something like this photo:
I've attempted using accepts_nested_attributes, bu...
Cutpurse asked 31/7, 2018 at 4:36
2
I have problem in selectize JS when set current value is multiple value. I set from Ajax response in Json format, here is my code.
$(".rule_list").on("click",function(e) {
e.preventDefault();
$....
Rancell asked 20/2, 2017 at 14:40
3
Using Selectize.js, I'm trying to initialize the dynamically pre-select one of the item of the list without triggering the onItemAdd event. In the following code, the event is triggered even if the...
Froe asked 12/3, 2015 at 14:1
3
I'm using selectize.js 0.10.1 with Bootstrap 3.0.1 in my project. When I have selectize combobox outside the collapsible Bootstrap panel, everything works great as you can see in the picture.
Wor...
Shipe asked 26/6, 2014 at 14:6
2
Solved
I would like to use a reactive value to load control a selectizeInput widget. I can do this with a simple shiny app, but I can't seem to be able to replicate it when I try to reorganize it in a mod...
Selfexpression asked 28/11, 2017 at 11:11
2
Solved
Hi I am getting back a JSON encoded array ("html") from my Ajax call that I would like to add in the selectize as both value and text (I am using a tag) .
How can I do that ?
HTML
<input typ...
Sheley asked 8/10, 2013 at 0:12
2
I use the selectize.js with remove-button Plugin. I fill the options dynmaicly based on Users decisions.
By Buttonclick i add a new Option.
$('#saveItem').click(function(){
data = [{item: 'newI...
Clambake asked 29/7, 2016 at 9:29
2
Question
I have two dropdowns, the choices available in dd2 are conditional on option selected in dd1. I"m unable to figure out how to change the options of dropdown 2 but retain whatever selectio...
Daffy asked 7/2, 2015 at 8:6
5
Solved
I am using Jquery's Selectize tagging library which works well for me so far.
Below is the code I have used.
Javascript Code:
$('#q').selectize({
plugins: ['remove_button'],
valueField: 'addr...
Breath asked 13/9, 2017 at 12:3
3
Solved
Problem
I have a text input that I have selectized as tags which works fine for querying remote data, I can search and even create new items using it and that all works OK.
Using selectize:
va...
Cataract asked 11/9, 2014 at 3:46
4
Solved
Is there any way I can remove an item from Selectize?
Here is my a sample list:
AMNT
QTY
NA
When I pass NA it should remove particular item:
$.fn.removeSelectorValue = function (value) {
...
Valise asked 11/11, 2014 at 20:8
3
I installed the "selectize-rails" gem into my rails app, and I'm trying to get it to work. I keep getting this error in my web console:
TypeError: $(...).selectize is not a function
and nothing ...
Pattani asked 3/1, 2015 at 17:40
1
I am trying to increase the length of the dropdown list when using selectizeInput in Shiny.
I know I can set the max number of items shown by: options = list(maxOptions = n) but how could I define...
Gaulin asked 15/9, 2014 at 8:22
3
Solved
I have a dropdown with id "selectCountry" filled by ajax and on success I just bind the Selectize.
$('#selectCountry').selectize({
create: true,
sortField: 'text'
});
When I rebind my origina...
Mccloskey asked 26/5, 2015 at 12:0
3
Solved
I'm trying to validate a form that uses the Selectize.js to select and jQuery Validation plugin for validation.
I can not make it work. The script validates the input fields, but not the select:
&l...
Yanez asked 27/3, 2014 at 19:24
1
Solved
As the title, on selectize, how can I disabled typing except Backspace key.
It will be allowed to:
Select item on dropdown.
Delete selected items.
It will NOT be allowed to:
Type or add any ...
Antepast asked 5/10, 2016 at 5:2
4
On Android, when the selector is touched, the keyboard input appears. I suspect this is because the generated input is of type="text".
How can I prevent this from happening? If the user is choosin...
Laocoon asked 14/2, 2015 at 0:12
2
Solved
So I'm creating an autocomplete search field using selectize.js. It works fantastically, unless I scale the dropdown to a small mobile screen. Any text mildly long causes it to overflow to the next...
Fitly asked 9/6, 2014 at 13:9
3
I am using the brilliant selectize.js library to generate an attractive select box with option groups. It is all working but I am stuck at the point that I cannot use the custom renderer from the e...
Nonperishable asked 21/4, 2014 at 21:45
© 2022 - 2024 — McMap. All rights reserved.