Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery UI Selectable : How to get marching ants style lasso to show up?

I've just started injection some jquery UI goodness into my app and am struggling with a rather minor issue. I have the selectable plugin working but I can seem to get the lasso marquee box thing to show up when dragging to select multiple.

Working Example on jquery UI site: http://jqueryui.com/demos/selectable/#default

My Attempt: http://jsbin.com/amare5/2/edit

The code used is an exact copy of the example of the jquery UI site. What am I missing?

like image 558
wilsonpage Avatar asked Mar 24 '11 18:03

wilsonpage


1 Answers

WORKED! Thank you @mattball! Without having to import the whole style sheet you just need this chunk:

.ui-selectable-helper{
  position:absolute;
  z-index:100;
  border:1px dotted black;
} 
like image 185
wilsonpage Avatar answered Oct 04 '22 04:10

wilsonpage