Modify ↓
Ticket #2554 (closed bug: fixed)
ui.sortable - IE Bug in serialize with custom attribute
| Reported by: | dachande | Owned by: | paul |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.4 |
| Component: | ui | Version: | 1.2.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Serializing a sortable in IE with a custom attribute as option returns nothing.
example:
$('.groupWrapper').sortable('serialize', { attribute: 'class' });
I've experimented with ui.sortable.js and found a workaround for this.
Replace line 114 in ui.sortable.js
var res = (this.getAttribute(o.attribute || 'id') || '').match(o.expression || (/(.+)[-=_](.+)/));
with the following:
var res = ($(this).attr(o.attribute || 'id') || '').match(o.expression || (/(.+)[-=_](.+)/));
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Fixed in rev.5122 in trunk. Thanks!