Questions tagged [jquery-ui-selectable]

The jQuery UI Selectable plugin: Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections.

The jQuery-ui Selectable plugin allows for elements to be selected by dragging a box (sometimes called a lasso) with the mouse over the elements. Also, elements can be selected by click or drag while holding the Ctrl/Meta key, allowing for multiple (non-contiguous) selections.

API Documentation

239 questions
0
votes
2 answers

JQuery UI selectable + dynamic list

My problem: I generate my lists dynamically and I want make them selectable. For example: function gen() { //list generation $('#blank').append(listHtml); } $(function() { $('.mylist').selectable(); }); As a result, the lists are not…
Vilix
  • 101
  • 1
  • 8
0
votes
2 answers

JqueryUI Selectable direction

i'm trying to build some JQuery UI Selectable demo. Is it possible to know if the user is selecting from left to right or right to left ? I have tried this solution but it's not working var last_selected_id="first"; $( ".selectable" ).selectable({ …
Diogo Mendonça
  • 903
  • 2
  • 12
  • 29
0
votes
0 answers

select only un-selected grids using jquery ui

I am using selectable jquery ui for selecting grids(5000 grids in a page), the code is bellow: $( ".sell-grid" ).selectable({ // cancel:'div.al-selected', // filter: "div.al-unselected", // disabled: false, stop: function() { …
0
votes
1 answer

create a dropdown button in a selectable item in a list

I am using jQuery Ui to make list items selectable on my web app. Inside each item from this list I have a dropdown button. When I'm adding the selectable option to the list, the dropdown options doesn't open since the item (the button's parent) is…
0
votes
3 answers

How to use onclick event on a list (jqueryui-selectable)?

I created a simple script with jqueryui-selectable list. I generate a selectable list and assign each list with an onclick function. It seems that the onclick event was not triggered when I clicked the list. Any idea to solve this…
0
votes
1 answer

JQuery Selectable Widget Values Server Side ASP.NET

I have been searching around on Google and SO for awhile now and can't seem to find an answer to this seemingly easy question. I want to implement the JQuery selectable widget exactly how it is shown here: http://jqueryui.com/selectable/#default. …
Eric R.
  • 1,105
  • 3
  • 21
  • 48
0
votes
4 answers

jQuery .selectable(), Always returns the same ID?

Below I have this little list:
You've selected: none. Combined with…
0
votes
2 answers

How to select all divs that overlay with a draggable div in jquery?

I'm building a graph displaying events happening over time. Each of my event is an horizontal bar that is created using a
as shown below:
aaaa
0
votes
1 answer

How do i get a dialog to appear after first click from a Selectable using JQuery?

I am having trouble getting my dialog to appear after the initial click. Here is what happens when a Selectable is clicked: First click- Nothing Second click- First clicks content. Closed. Nothing Third Click- First clicks content. Closed.…
andrew
  • 31
  • 1
  • 10
0
votes
1 answer

Select list items on page load with JQuery UI Selectable

I am trying to set up a list of of items that are selectable -and would like to have some of the list items already selected when the page loads. The user needs to be able to select multiple items (got this part working) but needs to be able to…
0
votes
2 answers

Selectable non selected values

I have a requirement that a user can pick 4 names from autocomplete and specify one of those will be primary name. When submiingt the form, I should capture all 4 values from the server and identify which one is primary . I am planning to use…
user2088016
  • 99
  • 2
  • 2
  • 9
0
votes
2 answers

jQuery Selectable not working in IE or Chrome

I have a jQuery selectable list that has a handle to select an item from one list and put it in another "selected" list. This works fine in Firefox but does not work at all in Chrome and IE. I am not able to click an item to move it to the selected…
KMBonin
  • 111
  • 4
  • 12
0
votes
1 answer

Why jQueryUi selectable 'background-color' not work?

I tried to make work my library and I found that "background-color" CSS property not work when it used by jQueryUI. On the other hand if I simple use the "background" property with color value. I make examples on jsfiddle: - Working example - Not…
Péter
  • 2,161
  • 3
  • 21
  • 30
0
votes
1 answer

How to make elements select-able using jquery

I want to select list items when user clicks on them. But i don't want to use jQuery ui selectable. Please update my codes so that elements(only li) on my website can be selected just like in windows explorer.
    user2598045
0
votes
1 answer

jQuery UI Selectable Across Connected Sortable Lists

I have successfully managed to hack together (with the help of other posts), this example here (code and live example) which is a jQuery UI sortable and selectable comprised of three connected lists. There is also a restriction on it so that only…