Commit e2fdfdd8 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Notify before reading the form data

parent 41e9c371
......@@ -119,25 +119,25 @@
})
.push(function (validity) {
if (validity) {
return erp5_form.getContent()
return form_gadget.notifySubmitting()
.push(function () {
return erp5_form.getContent();
})
.push(function (data) {
data[form_id.key] = form_id['default'];
return RSVP.all([
form_gadget.notifySubmitting(),
form_gadget.jio_putAttachment(
form_gadget.state.id,
action.href,
data
)
]);
return form_gadget.jio_putAttachment(
form_gadget.state.id,
action.href,
data
);
})
.push(function (result_list) {
if (result_list[1].target.responseType === "blob") {
return jIO.util.readBlobAsText(result_list[1].target.response);
.push(function (result) {
if (result.target.responseType === "blob") {
return jIO.util.readBlobAsText(result.target.response);
}
return {target: {result: result_list[1].target.response}};
return {target: {result: result.target.response}};
})
.push(function (event) {
var message;
......
......@@ -230,7 +230,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>958.33121.48203.5614</string> </value>
<value> <string>959.56686.26676.10922</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -248,7 +248,7 @@
</tuple>
<state>
<tuple>
<float>1496310722.92</float>
<float>1496752669.52</float>
<string>UTC</string>
</tuple>
</state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment