Fixed edit_not in balancing.

This commit is contained in:
benni 2012-05-12 10:55:20 +02:00
parent da8fd1d72a
commit c49edb79a2
7 changed files with 24 additions and 24 deletions

View file

@ -1,9 +1,4 @@
%h2 Notiz bearbeiten
- remote_form_for 'order', @order, :url => {:action => 'update_note', :id => @order}, |
:before => "Element.show('loader')", :success => "Element.hide('loader')" do |form| |
= form.error_messages
= form.text_area "note", :size => "60x20"
%p
= submit_tag "Speichern"
|
= link_to_function 'Abbrechen', "Element.hide('edit_box')"
= simple_form_for @order, url: update_note_finance_order_path(@order), remote: true, method: :put do |f|
= f.input :note, inner_html: {size: "60x20"}
= f.submit