简体   繁体   中英

Group items in a Sortable list with jQueryUI

I'd like to be able to group items in a sortable list. If I group two items, then those two should be dragged together and be put inside a container that I can style. Those items inside that group should be able to be dragged as well inside the group, but that's just a bonus :)

Does anyone know if this is "possible" jQueryUI Sortables?

I ended up using custom selections for my items (adding class "selected") and then added the selected items inside a new LI and UL:

<ul>
    <li></li>
    <li>
        <div>Header</div>
        <ul>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </li>
    <li></li>
</ul>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM