3,412 questions
0
votes
0
answers
52
views
Jquery sortable grid with different height boxes
I want to make a jquery sortable dashboard for my users. The dashboard has blocks with different sizes. However if I move small blocks on the right of a big block, they sort correct, but the other ...
0
votes
1
answer
41
views
Jquery-ui sortable's placeholder stuck at the top
I have a problem with jquery-ui sortable's placeholder.
I'm trying to sort a collection of div and add a placeholder of where it would drop it.
Currently it seems like the placeholder is "stuck&...
0
votes
1
answer
44
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&...
0
votes
0
answers
39
views
Drag and drop of rows not working in ASP.NET MVC view
I want to be able to implement drag and drop on this page meaning I should be able to rearrange the rows as I want. This is not working for me. I am not able to drag the rows around. This is an ASP....
1
vote
0
answers
51
views
Get JQuery to give me the elements of an array from a list
I have an unodered list which uses JQuery to reorder the list. Each list item is made up of several parts:-
switch ($categ) {
case 'P':
$p1 = 'C';
$p2 = 'E';
break;
...
1
vote
1
answer
69
views
jQuery index returns -1 when dragging multiple items
I have two tables and I am able to drag and drop multiple elements using sortable. My problem is that when I drag items from table2 sometimes in table1, ui.item.index() returns -1.
After some tests I ...
1
vote
1
answer
91
views
Detect the table where the sortable item comes from
I have two tables where I can drag and drop items between tables and drag and drop items within the same table. I want to detect the table from which the item is coming.
Receive event only fires when ...
0
votes
0
answers
24
views
Sortable Jquery Ui sort array of objects
I have Itinerary saved in an variable in the format below
let Itinerary = [{placeid:'123',address:'Bordman'},
{placeid:'124',address:'Bardman'},
{placeid:'125',...
0
votes
1
answer
74
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>
</...
0
votes
1
answer
30
views
How to create a reactive Ranklist that changes with an action button?
I want to create a number of boxes that increases when the user click an action button.
I tried to create a counter, initialized it on 1 and linked it to an action button. When I try to use the ...
3
votes
2
answers
130
views
Jquery ui sortable - Programmatically move each pawn to it's own position
I've been trying to make a simple grid system with pawns (chess-like) for my dungeons and dragons sessions using jquery sortable. I am using laravel with blade for a project.
So in the code below, (...
0
votes
1
answer
281
views
symfony 6 sortable row with sortable.js
In my view I have
<table class="table table-striped bg-white table-sm">
<thead>
<tr>
<th scope="col">Název</th>
...
0
votes
2
answers
174
views
Trying to create date range filter in my pysimplegui table
first of all wishing all of you successful 2024 year!
Im trying to create a date range sortable filter in my PySimpleGUI table app, but unfortunately im getting this error all the time:
Traceback (...
0
votes
0
answers
33
views
sending mutiple arrays with ajax and updating SQL from sortable connected lists
I have been struggling with sending 3 arrays to a PHP update script with ajax. The goal is to have three lists on the page (employee, manager, admn) and when the user drags an item from one list to ...
0
votes
1
answer
88
views
Vue Destroy Sortable Element
Summary
Create Panel, and add Layers to panel. When trying to delete a layer
the last layer in the panel is deleted, instead of the layer item
selected for destruction.
Full Issue:
Understanding ...