Side navigation
#1128 closed bug (wontfix)
Opened April 17, 2007 08:50AM UTC
Closed March 31, 2008 01:36AM UTC
interface > sortable > onChange > SortSerialize Bug
| Reported by: | hiphapis | Owned by: | stefan |
|---|---|---|---|
| Priority: | major | Milestone: | 1.1.3 |
| Component: | interface | Version: | 1.1.2 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
...
onChange : function(obj){ onChange(obj); },
...
var onChange = function(obj){
/* Bug Code
serial01 = $.SortSerialize(obj[0]);
serial02 = $.SortSerialize(obj[1]);
*/
serial01 = $.SortSerialize(obj[0].id);
serial02 = $.SortSerialize(obj[1].id);
}
Attachments (0)
Change History (1)
Changed March 31, 2008 01:36AM UTC by comment:1
| description: | {{{\ ...\ onChange : function(obj){ onChange(obj); },\ ...\ \ var onChange = function(obj){\ /* Bug Code\ serial01 = $.SortSerialize(obj[0]);\ serial02 = $.SortSerialize(obj[1]);\ */\ \ serial01 = $.SortSerialize(obj[0].id);\ serial02 = $.SortSerialize(obj[1].id);\ }\ }}} → {{{ \ ... \ onChange : function(obj){ onChange(obj); }, \ ... \ \ var onChange = function(obj){ \ /* Bug Code \ serial01 = $.SortSerialize(obj[0]); \ serial02 = $.SortSerialize(obj[1]); \ */ \ \ serial01 = $.SortSerialize(obj[0].id); \ serial02 = $.SortSerialize(obj[1].id); \ } \ }}} |
|---|---|
| resolution: | → wontfix |
| status: | new → closed |
Interface is no longer supported; consider switching to jQuery UI.