Displaying 2 results from an estimated 2 matches for "sortableoptions".
2005 Oct 04
2
sorting error "Error: item.id has no properties"
...t;
My <ul> and <li> elements all have ids. Do child elements all need ids?
Here''s the code from dragdrop.js where the error is being thrown ( a  
few lines from the bottom of the file, line 501--HEAD version)
serialize: function(element) {
     element = $(element);
     var sortableOptions = this.options(element);
     var options = Object.extend({
       tag:  sortableOptions.tag,
       only: sortableOptions.only,
       name: element.id
     }, arguments[1] || {});
     return $A(element.childNodes).collect( function(item) {
       return (encodeURIComponent(options.name) + "...
2005 Oct 04
3
serialize()
Near the end of the Sortable.serialize() method, there is a split  
command that splits on an underscore. What is the convention it''s  
following here and is it documented somewhere?
Thanks,
Jamie
serialize: function(element) {
     element = $(element);
     var sortableOptions = this.options(element);
     var options = Object.extend({
       tag:  sortableOptions.tag,
       only: sortableOptions.only,
       name: element.id
     }, arguments[1] || {});
     return $A(element.childNodes).collect( function(item) {
       return (encodeURIComponent(options.name) + "...