mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
23 lines
841 B
Text
23 lines
841 B
Text
<div id="table-form" class="well">
|
|
<%= bootstrap_form_for(@result, url: result_table_path(format: :json),
|
|
data: { 'name-max-length': Constants::NAME_MAX_LENGTH },
|
|
remote: true) do |f| %>
|
|
<%= f.text_field :name, style: "margin-top: 10px;" %><br />
|
|
<div class="editable-table">
|
|
<%= f.fields_for :table do |ff| %>
|
|
<%= ff.hidden_field(:contents, value: ff.object.contents_utf_8, class: "hot-contents" ) %>
|
|
<div class="hot">
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<hr>
|
|
<div class="align-right">
|
|
<button type="button" class="btn btn-secondary cancel-edit">
|
|
<%= t("general.cancel")%>
|
|
</button>
|
|
<%= f.button t("general.save"),
|
|
class: 'btn btn-primary save-result',
|
|
onclick: "Results.processResult(event, Results.ResultTypeEnum.TABLE);" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|