Ignore:
Timestamp:
07/27/12 16:26:11 (13 years ago)
Author:
jkraaijeveld
Message:
  • Cleaned up some code in the WidgetFactory?
  • Started out on multiple choice input widget, not much progress yet but figured I'd commit everything before holiday anyway
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/ui/OrderedList.js

    r374 r383  
    9696                    this.source.insertNodes(false, [item]);
    9797                }
    98             }
    99 
     98            },
     99            getItems: function() {
     100                return this.source.getAllNodes()
     101                .map(function(node){
     102                    return this.source.getItem(node.id).data;
     103                },this);
     104            },
    100105        });
    101106    });
Note: See TracChangeset for help on using the changeset viewer.