39,617 questions
2
votes
2
answers
42
views
Scroll an option into view on open
I have a select with months.
The most used is April, so I'd like to present it when the user open the select when nothing else is chosen already.
I have a solution that works well in Chrome (the ...
0
votes
1
answer
49
views
Is there a way to figure out which input an open jqueryui datepicker is linked to? [duplicate]
I am working on an old project that uses jquery datepickers. On one page it has multiple inputs, all of which can open a datepicker (but only one datepicker is visible at any one time). Is there a way ...
0
votes
1
answer
50
views
jQuery Tabs UI Issue - from jQuery version 1.8.0 onwards
When working with jQuery and jQuery UI, I have an issue where after version 1.7.2 of jQuery, the tabs structure I have no longer work as previously expected.
This is the source I'm working with. If ...
0
votes
1
answer
75
views
JQuery Calendar Date Picker - Show Calendar without Clicking
On our website we currently have the Jquery date picker implemented, but my boss would like it if the calendar could just be active the whole time without the user needing to click on it to get the ...
0
votes
3
answers
62
views
JQuery UI datepicker Date Range modifications
I am using the basic JQuery UI datepicker, I need the date range with check in and check out but I need to add date + x days to the check out input.
How can I add x days to $.datepicker.parseDate( ...
-1
votes
1
answer
69
views
Issue with Switching and Adding Classes to Elements on Mouse Click
I'm encountering a problem while trying to switch and add classes to elements when a mouse click event occurs. Likewise I have multiple "li" elements. I want to add "class = subdrop ...
3
votes
0
answers
123
views
Penetration test fails for Wordpress 6.7.2 as jQuery UI 1.13.3 reached EOL
I'm running a Wordpress 6.7.2 multisite network for a customer of mine.
A recent compulsary penetration test failed with following message:
The following software is used on the pages in an end-of-...
0
votes
1
answer
64
views
Jquery hide or show text field based on radio button selection [closed]
I have the following code to display text box based on radio button selection. This does not work however. How to make this code work?
I want the text box field to show if useDockerCompose is chosen ...
0
votes
2
answers
81
views
Prop hidden() or hide() and show() can't used in Select2 Multiple Option
I want to ask about select2. I want, when I choose the option it will be hidden from the options in the select. And also if we remove it in multiple select option, it will be showed too in the option. ...
0
votes
1
answer
40
views
Draggable slider for touch devices
var reachedLast = false;
var reachedFirst = false;
jQuery("#gbar").draggable({
axis: "x",
containment: "parent",
drag: function (event, ui) {
var ...
0
votes
0
answers
34
views
ASP.NET MVC : jQuery datepicker inside bootstrap modal
I am stuck on a strange issue, I have a jQuery datepicker inside a Bootstrap modal popup. It works fine for some browser resolution, but not for all. This is how I resolved it, but I want some more ...
0
votes
1
answer
51
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
2
answers
94
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
96
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
74
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
69
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
52
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
32
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
55
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=&...
1
vote
1
answer
29
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
61
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
17
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
27
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
54
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
275
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
28
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-...
0
votes
0
answers
15
views
jQuery autocomplete doesn't work on dynamically created input text fields? (ajax call included) [duplicate]
I have an input text with id school_name field that I would like to apply jQuery autocomplete on. I managed to make it work making an ajax call and fetch the data and show them as options but ...
3
votes
1
answer
123
views
How to hide the checkboxes of the parent node in the dxTreeList?
I need to hide the parent node's checkbox (Boolean cell) in the tree List.
I use DevExpress with jQuery. I am new to this tech. Kindly anyone help me out to solve this problem with efficient way.
I ...
0
votes
0
answers
41
views
jQuery beforeunload not working as expected
The implementation of this jQuery function drives me crazy!!!
I know there are a lot of articles about it and I have spend hours to read them, but could not find any useful solution!
I created a ...
0
votes
1
answer
42
views
jQuery dialog inside iFrame not running close function
I have a simple jQuery UI Dialog. Everything is working as expected when viewing the page by itself except when that page is in an iframe. For some reason the close: function isn't firing.
Everything ...
0
votes
0
answers
66
views
jQuery UI datepicker month select box opens and closes immediately inside Bootstrap 5.3.3 modal for firefox browser
I've encountered a conflict between Bootstrap's modal and jQuery UI datepicker in firefox browser where I can't use the month select box because something closes it immediately after being open.
Steps ...
0
votes
0
answers
59
views
JQuery Autocomplete function is triggering multiple times
I need to set a search bar in my code where it will retrive the data of the products present in the database.Here in the same project they have used the exact code to do the product search I used that ...
0
votes
1
answer
94
views
JQuery Datatable is not visible
I have an ASP.NET Core MVC web application written in C#. I created a Razor view and in that view, I show 2 jQuery datatables horizontally and in between these 2 data tables, there are 3 buttons.
...
0
votes
0
answers
44
views
Open Razor View as popup from jquery datatable
I am working with an ASP.NET Core MVC app in C#, where I have a window with jQuery datatable (I am using C# and Visual Studio 2022). In this datatable, I have 4 columns. One of the column is link ...
0
votes
1
answer
88
views
ASP.NET Core MVC jQuery UI
I am very new to ASP.NET Core MVC in C#. I have 2 datagrids or data table in a window arranged horizontally. I have some buttons arranged between the 2 grids.
How to create a UI as shown below? Please ...
0
votes
0
answers
29
views
Dynamically inserted html() elements are not click() event functional, non-interactive [duplicate]
I am using jquery-ui dialog to display editable page data and mostly works well except for the page delete process to reload the updated navigation elements. The process occurs in the AJAX success ...
0
votes
1
answer
684
views
How to update the jQuery and jQuery-UI latest version
I AM using jQuery- v1.9.1 and jQueryUI- v1.10.3, but i need to update this as latest version how to update this files. can you please help me to update this file.
iam getting some methods as mismatch ...
1
vote
1
answer
638
views
Updating jquery-ui ASP.NET Core MVC
I would like to update jquery-ui.js in my ASP.NET Core MVC application. I saw that the file is located in the following structure:
What is the correct way to do this?
Should I just download the file ...
0
votes
1
answer
27
views
Kendo grid not getting displayed
I have a problem rendering a Kendo grid.
I have the below code:
$(document).ready(function() {
$('#searchBtn').click(function(event) {
event.preventDefault();
...
1
vote
0
answers
30
views
How to load data into Kendo grid using ajax call?
I am creating a spring boot application to book flights. I have defined a controller to retrieve flight details from database:
@Controller
@RequestMapping("/home")
public class ...
0
votes
1
answer
48
views
Text Wrap around JQuery Draggable/Resizable Image
I am trying to use JQuery, and want images to be resizable and draggable. I also want the text to wrap around the image (does not have to be real time) when the image is dragged or resized. Right now ...
0
votes
1
answer
26
views
jQuery UI Dialog flashes when positioned over triggering object
I am trying to use jQuery UI Dialogs to replace the previous javascript tooltip mechanism. Our website has been using WZ_tooltips for many years. WZ_tooltips was created by Walter Zorn in 2002. RIP ...
0
votes
1
answer
37
views
revert to original position a sortable if serverside update doesn't work
My question is a duplicate of this question but the accepted answer contains a fiddle that is no more valid. So I need to ask it again.
I am using jquery Sortable to move elems from one list to ...
0
votes
1
answer
51
views
How to implement jQuery UI Datepicker with custom buttons to enhance user interaction and functionality?
<input class="input-class" />
How can I implement a jQuery UI Datepicker with custom buttons for enhanced user interaction? I want to include buttons like "Next", "Next ...
0
votes
1
answer
78
views
Jquery ui sortable table row with specific static column
I have a problem with jquery sortable on table. My table goes like this:
<table>
<thead>
<th>Number</th>
<th>Text</th>
<th>Order</th>
</...
-1
votes
2
answers
64
views
Getting HTML in input on select in jquery ui autocomplete
I am using jquery ui autocomplete to fetch cars,parts,and services from my database, i am diffrentiating both or three records type by adding span in last. But when i select any value its showing span ...
2
votes
2
answers
259
views
JQuery autocomplete from DB in spring boot and Thymeleaf
this is my template:
<!-- JavaScript -->
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<script src="https://...
0
votes
1
answer
37
views
JQuery draggable falling out of sync with cursor when drop zones are revealed
I'm trying to achieve a set up in which dragging a div reveals the drop-zones onto which it can be placed. Trouble is, when a drop zone above the draggable origin is revealed, it pushes the div the ...
-4
votes
1
answer
218
views
How do I position the progress bar around the element that has triggered the task?
I am developing a dynamic website using jQuery which relies heavily on AJAX operations. Whenever an AJAX operation starts, a progress bar is shown which I have positioned in the middle of the web page....
0
votes
0
answers
33
views
Set value JQUERY UI Slider with LeaFlet map
im willing to modify the time value of the Leaflet TimeSlider plugin, i have this plugin that i modified so i can see in locale format.
https://github.com/carlosign/LeafletSlider-LocalTime/blob/master/...