A backbone-forms editor that wraps jQuery's Autocomplete library to provide a delicious autocompleting select box for your forms.
var User = Backbone.Model.extend({
schema: {
title: {
type: 'AutoSelect',
sourceUrl: "/test/manual_test_data.json",
itemTemplate: itemTemplate,
minLength: 3,
autoselectBlurTimeout: 200
}
}
})