149 questions
0
votes
1
answer
47
views
jqxGrid: Nested grid not showing for some rows in Firefox (works fine in Chrome/Edge)
I'm using jqxGrid with nested grids (row details) enabled via rowdetails: true and initrowdetails to show detailed subgrids for each parent row. It works perfectly in Chrome and Edge, but in Firefox, ...
0
votes
1
answer
128
views
How to edit jqwidgets jquery grid cellclassname/css using row id and column name?
{
text: 'sell',
datafield: 'Sales',
width: '3%',
columntype: 'button',
filterable: false,
cellsrenderer: function(row, columnfield, value, defaulthtml, columnproperties) {
...
1
vote
0
answers
109
views
Vite development mode to include jQuery widgets/plugins
jQuery widgets work with vite build, but it do not work with vite. Then they are not available - object.widgetFunction() gives that widgetFunction is not a function.
Is there anyway to get them to ...
1
vote
0
answers
34
views
jQuery tool tip not appearing on hover
$(document).ready(function() {
$("img").tooltip();
});
<html>
<head>
<title>About Us</title>
<link rel="stylesheet" type="text/css" href="style.css">
</...
-1
votes
1
answer
619
views
Cannot set input field with type password and autocomplete using javascript
I am working on an automatic login feature by filling in the username and password for a web application using javascript. The password field has the autocomplete feature activated. It's HTML is as ...
1
vote
1
answer
449
views
How to add a click handler to a custom jQuery UI widget and use the widget's property in the handler?
I have prepared a jsfiddle for my problem.
I define a custom jQuery UI widget representing a game table with up to 4 players and a white gid ("game id") number in the middle:
Here is my ...
0
votes
1
answer
86
views
How to prevent a jQuery widget appended to a selectable from growing bigger onmouseover?
TLDR UPDATE: here a JSFiddle demonstrating my problem.
In an HTML game I have created a custom jQuery widget called table representing a rectangle green table with up to 4 players sitting at it:
In ...
4
votes
1
answer
620
views
Set value to jquery widget slider
EDIT: Simpler explenation of the problem first. More detailed explanation below.
I use some jquery widgets code to create a UI slider. The code is here:
https://webgl2fundamentals.org/webgl/...
0
votes
0
answers
35
views
Autocomplet JQuery widget not working on the server
I have an issue with the autocomplete widget from jquery(https://jqueryui.com/autocomplete/). When I start the local development server, everything works fine, the widget works perfect, but when I ...
0
votes
2
answers
297
views
Jquery functions are called twice
Edited
I am opening a modal on click of link in jqwidget grid column, I am using the cell renderer to accomplish this. but the data is rendering twice. Below is a screenshot after clicking to open ...
0
votes
1
answer
84
views
"Using" option in jQuery position api
In jQuery documentation it says the feedback argument gives horizontal, vertical and important, giving you twelve potential directions like { horizontal: "center", vertical: "left", important: "...
0
votes
1
answer
138
views
JQueryUi Autocomplete Combobox sometimes not loading properly in Firefox
I am using JQueryUi 1.12.1 version and JQuery 3.2.1 version.
I am trying to use 2 JQueryUI Autocomplete Comboboxes in my website, so I copied Combobox code from here, changed it a little bit and ...
0
votes
1
answer
48
views
Bootstrap slider not being recognized even though the dependencies are there
Is there any reason why bootstrap slider is not being recognised as a function even though the correct dependencies are there?
The jquery ui files downloaded that are present in the web app folder ...
0
votes
1
answer
238
views
Autocomplete combobox button not rendered properly
I am trying to make this widget work in my application - http://jqueryui.com/autocomplete/#combobox
I am only trying to make the example work as is. I did have to change the button widget ...
0
votes
1
answer
4k
views
Magento 2 how to validate customer registration form on keyup event
I am working on a project where I need to validate customer registration form as customer types. I want to use the event keyup for inputs. I want to change the default messages also. Right now I am ...