jquery-ui-selectable

jQuery Selectable - deselect single element by clicking - is this possible?

I would like to be able to deselect a selected item by clicking or using lasso, just like in Photoshop where I keep another key down to "deselect" parts of an existing selection. Is this possible? As I understand "jQuery UI selectable". There is only "single click" with or without CTRL to add multiple and then the quick lasso. I am tr...

jQuery-ui: How to programatically select selectables

I have a range of items that are selectable. I would like to add a button somewhere that activates a preset selection amongst those. Is there a way I can do that? What I would like is to tell it to "Select these guys" and then have all the events and all fired as normal, so I don't have to call all of those selection events manually. M...

jQuery UI sortable & selectable

Hi, Does anybody know how to combine jQuery UI selectable and sortable ? This script: http://nicolas.rudas.info/jquery/selectables_sortables/ doesn't work in Chrome and it also has plugin modifications. Thanks ...

jQueryUI selectable: multiple selections

I need to create a 7 day calendar on a website, and I was using jQuery UI's "selectable()" function to allow a user to do something like select 7am to 11am on monday. My problem comes from needing multiple categories of selection, i.e. user can select 7am to 11am for category A, AND also make a separate selection of 5pm to 9pm for categ...

Dynamic Odered list with jquery selectable control

I got this mockup, I need to load dynamically pictures from a db and once loaded I need to click on each picture in order to mark what scholar will be promoted to the next grade, I'm figuring out mark it with a star image when I click on the picture, maybe an overlay div on each image that it is activated when I do click. Any idea how c...

jQuery UI Selectable - unselect selected item on click

Hi, Does anyone know if there's a way to configure a jquery ui selectable element to unselect the selected element when you click it? Sort of like a toggle. If it's already selected, unselect it, otherwise do the default behavior. Thanks. ...

Jquery selectable only with shortcut

I want to let the user select when the shift key is held. $("#div").selectable({ start: function(st) { $(window).keydown(function(e){ if(!e.shiftKey){ st.stopPropagation(); } }); }); no? ...