#2355 closed bug (notabug)
.sortable("serialize") unable to handle id with '-' in it
Reported by: | Bitruder | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ui.core | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If run .sortable("serialize") on a list with an item that has an id with '-' in it, then that id is chopped off just before the - character.
<div id="sortlist"> <div class="sortable" id="test-id">Content</div> <div class="sortable" id="test-again">Hello</div> </div>
If you make that a sortable and then serialize it, you get two test', not
test-id' and `test-again'.
(using UI 1.5b)
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Sorry, I now realize that your default value for expression will look for something of the form (.+)[-=_](.+). I just passed an expression option and it works now (I juse used (.+)).
Might want to add that default value to the documentation as I wouldn't have expected - to be a default separating character.