Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
2 votes
1 answer
92 views

I'm aware of almost identical questions that were already raised here: Disable an item in selectInput/selectizeInput Disable an item in selectinput dropdown However I want to use only plain shiny ...
Olivier7121's user avatar
1 vote
1 answer
81 views

I'm building an interactive Rmarkdown html document with plotly in R. It is composed by 3 elements: a main scatterplot (interactive), a secondary scatterplot, and a table. The design looks like this: ...
dkysh's user avatar
  • 91
0 votes
0 answers
160 views

I'm looking to apply form floating to a select field that I have modified with selectize.js. The trouble is selectize.js turns the original <select> element to hidden and appends its own ...
Tom M's user avatar
  • 35
1 vote
0 answers
193 views

I am trying to load data for jQuery plugin Selectize.js via ajax, but I am not able to delete options loaded with previous calls from dropdown element. I am stuck with this code where I am able to ...
sylar32's user avatar
  • 177
0 votes
1 answer
52 views

I have an RShiny a dropdow (a selectInput object) and I would like to be able to switch between options using a keyboard shortcut. For my purposes the best option would be to have the key combination ...
Caligula's user avatar
  • 105
1 vote
1 answer
70 views

I want to make a shiny app in which I select different dataframes to visualize. Then I want to select a filter on this same dataframe. The point is that I want the selectInput to show the filter ...
Fred's user avatar
  • 115
0 votes
2 answers
116 views

I need to use Selectize in wordpress ajax. I have a selecto tag, I want to search by entering words and display the results in a dropdown. It is also possible to select several items and delete them. ...
SHMA's user avatar
  • 3
-1 votes
1 answer
69 views

I am experiencing an annoying issue with the latest Selectize (currently 0.15.2). Whenever I type in the dropdown to search for entries, I only ever get entries that match according to the start of a ...
Kristian Ashton's user avatar
1 vote
1 answer
52 views

I want for my shiny-app, that when the user deletes the entry in a selectizeInput, that the app does not react at all, just like it happens with selectInput. Also when the empty selectizeInput looses ...
Noskario's user avatar
  • 896
0 votes
0 answers
41 views

Is it possible to show all selectizegroupUI options but grey out the unavailable selections based off of what it already selected? For example, when selecting a Manufacturer, show all other options ...
Jo Lo's user avatar
  • 51
0 votes
1 answer
275 views

My dropdown box is an optional filter. If one or more items are selected, then a filtering is performed. If nothing is selected -- no filtering. I would like to communicate that behaviour. By default, ...
Karsten W.'s user avatar
  • 18.6k
1 vote
1 answer
64 views

I used selectize html plugin for custom select tag. I make html: <select name="personAndType" class="form-control" multiple="multiple"> <option value=&...
user2572790's user avatar
0 votes
1 answer
27 views

I wanted to apply Selectize to every select tag in my component . The reason I need this to be a function is because I have select that can be added by button. export default { data() {}, ...
BouhaCode's user avatar
0 votes
2 answers
100 views

I have an input element where the user is meant to type their time zone or select it from a dropdown menu. The time zone list consists of official TZ identifiers. These identifiers follow a specific ...
Sim's user avatar
  • 3
0 votes
1 answer
122 views

I am making a Shinysurvey for some government agency. I have a dummy questionary. This are the questions dataframe head question option input_type input_id dependence dependence_value required Nombre ...
David Jimenez's user avatar
1 vote
2 answers
123 views

I'd like to alter a part of a SelectizeInput dropdown option. For example, if any choice ends with a "*", the "*" should be bold (or in a bigger font). I'm not sure that the ...
mkranj's user avatar
  • 549
1 vote
1 answer
412 views

I have a selectize input and want to change its behaviour. I normally use selectize inputs from within some framework (shiny), so I hope the example that I give here is understandable and precise. I ...
Noskario's user avatar
  • 896
0 votes
1 answer
112 views

I have a shiny app in which I have a selectizeInput. Only having exactly one choice is valid, but it should be possible to delete the input, so one can start typing in order to search through all ...
Noskario's user avatar
  • 896
0 votes
1 answer
77 views

I would like to trigger an event when the user leaves a selectize-Input. However for selectizeInput it does not work and for textInput it only fires once: library(shiny) ui <- fluidPage( ...
Noskario's user avatar
  • 896
0 votes
0 answers
22 views

I have an input with selectize and I want when displaying the selected value, to be able to modify part of the displayed value without completely deleting the option. In fact currently I have to ...
toudarte's user avatar
1 vote
1 answer
57 views

selectize({ valueField: 'Id', labelField: 'Name', searchField: 'Name', load: function (query, callback) { $.ajax({ url: '/some_url/params?...
YousefBelal's user avatar
0 votes
1 answer
62 views

Whenever i try to remove an item from Selectize input, i get the following error in the console: index.js:12 Uncaught Error: Syntax error, unrecognized expression: option[value="{"id":&...
sakariya's user avatar
1 vote
1 answer
232 views

Here's a small example to illustrate my issue. My real situation involves a dataframe with 14 columns and over 22 million rows... library(shiny) library(DT) library(magrittr) model <- c("...
jerH's user avatar
  • 1,299
1 vote
0 answers
76 views

<select class='select-option hid-model search ' id="modelsmain" onchange="filteronchange('indexmain')" name="models"> <option value=''><?php echo lang('...
Aqeel Gillani's user avatar
1 vote
1 answer
102 views

I have a shiny app in which a new tab panel with input elements gets created by a click of a button. There is also a DT object which shows global information and with which elements can be selected ...
schistef's user avatar
1 vote
1 answer
208 views

In the simple example below, I cannot select state 3 after selecting states 1 and 2. It works okay with 2 states, but as soon as I go to three states it infinite loops through the ObserveEvents. If it ...
user1329307's user avatar
0 votes
1 answer
123 views

Hei, I have a very long list of headers (>1000 items). I want to chose one of them with a selectInput in a R shiny app. Before chosing one Item, I want to type letters in the selectInput to shorten ...
Volker Holzendorf's user avatar
1 vote
1 answer
495 views

I want the user to see a different tooltip when hovering over grouped choices in selectizeInput. This was solved here for a flat vector of choices. i.e. choices = c("a", "b", "...
Nate Hawkins's user avatar
1 vote
1 answer
263 views

Before you go after me regarding duplicate posts, hear me out: I already stumbled across posts like these: latex in shiny selectInput Which are super useful! However, the main issue is that I just don'...
annahuynhly's user avatar
1 vote
1 answer
162 views

I'm trying to create multiple selectize select menu's dynamically, by pressing the plus icon. Please test the code below, the problem is that if I comment out this line selectize_init(select_class, ...
Lynob's user avatar
  • 5,375
1 vote
1 answer
259 views

I made a vector of choices. When I click on selectizeInput, I get choices in the same order as in my vector, but when I start typing in selectizeInput, the order of my choices is not the same as in my ...
kileuskas's user avatar
1 vote
1 answer
111 views

When you remove a choice with the remove_button plugin and then add it again, it shows up in blue, as if it were selected, while the rest stay grey. I'd like to force them all to be grey. Example: ...
mkranj's user avatar
  • 549
2 votes
1 answer
271 views

I am trying to use the onChange callback for selectizeInput within Shiny. The following code works - when the option on the drown-down menu is changed, the text output appears. However, it is not ...
Simon.S.A.'s user avatar
  • 7,012
0 votes
1 answer
193 views

I have a selectize.js function that allows a search ability through options. When a radio button is clicked, I want all the options in the selectize.js function to be removed so new options can be ...
soph's user avatar
  • 1
0 votes
1 answer
361 views

In my SvelteKit project I am using the svelecte package to add selectize-style select inputs. The initial values are passed in via the the data variable created by svelte's load function when the page ...
erikor's user avatar
  • 386
0 votes
2 answers
319 views

Why does Selectize show only the words that start with the given string and not the ones that contain it? I want to show the matches that contain the specified string, not only those that start with ...
Daniel's user avatar
  • 43
0 votes
0 answers
161 views

I'm building a laravel project (version 9) and I need to use selectize.js for my select inputs. I need to show a placeholder like "Select product" so users can click on it, search for items ...
Kemal Özvarol's user avatar
1 vote
1 answer
301 views

I am trying to integrate selectize in Datatable Editor, but get an empty value (for the field 'country'), if I click on edit. I have a datatable defined as follows : var table = $('#example')....
AJ31's user avatar
  • 268
0 votes
2 answers
187 views

I have a select in my section using selectize js , now I want when input is focused to be able to edit the input after selection of any option. Live demo: live demo HTML <label>Single ...
The Dead Man's user avatar
  • 5,604
0 votes
2 answers
135 views

I have two dropdowns that I need their values inside a URL. I am using selectize for the two dropdowns. But I mostly used jquery for the functions. Expected output is a URL that changes with value of ...
dave's user avatar
  • 214
0 votes
1 answer
266 views

I have two dropdown menus and I would like to store the values of the user selected value. I am making use of selectize library for the dropdowns. Html: <div style="max-width: 200px"> ...
dave's user avatar
  • 214
0 votes
1 answer
611 views

Does anyone know how to use select option with search but the option is appended. the plugins that I've tried cant read the appended option. Does anyone know how? Please help. thanks. Plugins i've ...
user avatar
0 votes
1 answer
284 views

I've chosen selectize.js as it fits my needs. One thing I can't force it to do is to move the chosen option to the top of the list. Here is jsfiddle version const selectizeInit = (() => { ...
ArekK's user avatar
  • 3
1 vote
2 answers
704 views

BACKGROUND: I have a large list of stock symbols, 27,000 rows, that I would like to be choices in a selectizeInput() on a shinyApp. Since the list is large I am using server = T in ...
JJ Fantini's user avatar
0 votes
1 answer
112 views

I am using selectize (a select2.js alternative). When I am running selectize on my field with 2 optgroups, one of the optgroups disappears \(〇_o)/ This is the HTML of the select field: This is how it ...
odedta's user avatar
  • 2,478
0 votes
1 answer
231 views

I have an Rshiny app where users can select from a list of items to view. The list is usually very long (>10,000). Most users would want to look back and forth between a select sample of these ...
Jeff's user avatar
  • 742
0 votes
0 answers
54 views

I am working on a project where I created an API in Flask Python and part of the URL has its value gotten from a select option in a Jinja template: Jinja2 template HTML: values from the backend <...
dave's user avatar
  • 214
-1 votes
1 answer
298 views

I am using multiselect in selectize.js, how do i get the vales from the select options: html: <div class="selectBox1" multiple="multiple"> <select id="period&...
dave's user avatar
  • 214
0 votes
1 answer
505 views

I keep getting this error over again while using select.js for some reason I have checked other similar error it is still the same although I am doing this in flask jinja template and also have ...
dave's user avatar
  • 214
1 vote
1 answer
951 views

I am trying to implement selectize.js inside my project with webpack and typescript. First I installed selectize.js and related types: yarn add @selectize/selectize yarn add @types/select2 In my ...
Danilo's user avatar
  • 53

1
2 3 4 5
14