39,703
questions
0
votes
1
answer
31
views
Multiple Date Pickers - disable selected dates
I'm using 'MultiDatesPicker for jQuery UI' http://luca.lauretta.info/Multiple-Dates-Picker-for-jQuery-UI/ which as far as I can tell uses jQuery-ui Datepicker.
On my site I've got 3 date pickers ...
2
votes
3
answers
58
views
Removing Last Text Parentheses Using jQuery From a String
I am trying to remove the text from the last parentheses within a string using jQuery. I am able to remove the parentheses from the string but the code removes every parentheses and I need the last ...
1
vote
1
answer
61
views
Clear Selectable Element Filter using JQuery Button
I am following the below answer for my charting scenario, I have no problem in expected functionality like rendering the chart, filtering the charts.
Editing Google Charts Category Filter
My Problem ...
1
vote
1
answer
60
views
how to adjust draggableElement to have correct x and y position
I have implemented chart js to plot a two curve indicated by red and blue line. I want to add a slider (black vertical line) so that it remains always within two curves and user can move it left and ...
0
votes
1
answer
26
views
activeClass and hoverClass not work in jQuery UI Droppable
My drop function fires and everything seems correct but the hoverClass and activeClass does not change the div background.
I've tried this under Chrome, Firefox, and Edge. It has to be something I am ...
0
votes
1
answer
29
views
How can I make slider work correctly if it gets scaled with transform:scale()
I have a jQWidget slider on a page, but the same problem exists with the jQuery slider. If I set a transform: scale(0.7) to any element above in the hierarchy, the slider does show not the correct ...
0
votes
0
answers
20
views
Issue writing unit tests for a jQuery datepicker plugin
the start of my plugin
(function(factory) {
if (typeof define === "function" && define.amd) {
define(["jquery", "jquery-ui-dist"], factory);
} else {
...
0
votes
1
answer
35
views
How to use both sortable and draggable in jQuery UI simultaneously
html:
<div class="item-list" id="list">
<div class="draggable" data-index="0" draggable="true">Draggable1</div>
<div class=&...
0
votes
1
answer
21
views
Asynchronously filled in table doesn't have any values in the fields
I'm working with a software suite called LaserFiche.
I'm trying to force it to do what I want, specifically, I want to put the contents of a hidden table into another table that I'm going to do a ...
0
votes
1
answer
49
views
jquery UI Calendar date range showing too many months
I have the jquery UI code where i am trying to display 6 months of the current year starting from this months onwards till next 5 months so a total of 6 months, but right now, it goes beyond the those ...
0
votes
0
answers
13
views
jQuery UI Selectable how to set default value [duplicate]
I want to select item with id="Today" by default.
Here is my HTML:
<ol id="selectable_date">
<li id="Today" class="ui-widget-content">Today</li&...
0
votes
1
answer
19
views
Jquery-UI Autocomplete Setting Selected Text As 0
I have a table containing a row of textboxes - Category, Manufacturer and Model.
When the user types a value in to the Model field, I want to show an autocomplete box showing similar matches to what ...
0
votes
1
answer
32
views
Sortable toArray() occasionally creates list with a duplicate at the end
I want to use a form to let users rank a list of items and store the ranking in a form field called ranking. I am using "Sortable" to and "toArray" for this:
<ul id="items&...
1
vote
2
answers
82
views
Bootstrap 5 Bundle and Jquery Spinner issue
I'm facing a problem using Bootstrap 5.3.3 (BS5) bundle with JQuery spinner (for inputs with quantity spinner) - it all works fine however the up and down arrows don't display on the spinner - the ...
0
votes
0
answers
26
views
How to use onclick event (jqueryui-selectable)?
When clicked,
selected: function(event, ui) {
if (!$(ui.selected).hasClass('selected')) {
$(ui.selected).addClass('selected');
} else {
$(ui.selected).removeClass("ui-...