Sha256: 6be701f16bb6968d5d80429ec82170c8297e97f4891a4bdd2deaa5d68d0eed13
Contents?: true
Size: 823 Bytes
Versions: 8
Compression:
Stored size: 823 Bytes
Contents
<%= view_namespace %> ||= {} class <%= view_namespace %>.NewView extends Backbone.View template: JST["<%= jst 'new' %>"] events: "submit #new-<%= singular_name %>": "save" constructor: (options) -> super(options) @model = new @collection.model() @model.bind("change:errors", () => this.render() ) save: (e) -> e.preventDefault() e.stopPropagation() @model.unset("errors") @collection.create(@model.toJSON(), success: (<%= singular_name %>) => @model = <%= singular_name %> window.location.hash = "/#{@model.id}" error: (<%= singular_name %>, jqXHR) => @model.set({errors: $.parseJSON(jqXHR.responseText)}) ) render: -> $(@el).html(@template(@model.toJSON() )) this.$("form").backboneLink(@model) return this
Version data entries
8 entries across 8 versions & 1 rubygems