stop propagarion from draggable div to selectable table

Posted by Zeus on Stack Overflow See other posts from Stack Overflow or by Zeus
Published on 2009-08-25T11:13:00Z Indexed on 2010/03/25 18:03 UTC
Read the original article Hit count: 323

Filed under:
|

If I have a table which has selectable cells

 $("#selectTable").selectable({ filter: ">*>tr>td"});

and one of the cells contains a draggable div

$(".dragMe").draggable({});

HTML like so:

<table id="selectTable">
    <tr>
        <td>
        1
        </td>
        <td>
        2
        </td>
        <td>
        3
        </td>
        <td>
        <div class="dragMe">drag me</div>
        </td>
    </tr>
</table>

How do I stop the cell containing the div from being selectable?

I presume the div will intercept the click event before the table cell, but my attempts at using event.stopPropagation on the draggable element have led me nowhere so far...

Any suggestions or tips for using draggable inside a selectable parent would be most appreciated!

EDIT: It seems that adding the div element to the cancel option for the selectable almost works -

 $("#selectTable").selectable({ filter: ">*>tr>td", cancel: ':input,option,div'});

this prevents the div from being selected when you click on it, but not when you drag+select it along with surrounding elements.

Edit I've solved this now, the solution to this question can be found here

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui