Commit b446323a authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Do not use 'sub' as key for every multilistfield

parent cddfab91
......@@ -19,7 +19,7 @@
// Single listfield is never mandatory.
// Check requirement globally instead
required: 0,
key: 'sub',
key: gadget.state.key,
title: gadget.state.title,
hidden: gadget.state.hidden
};
......@@ -105,7 +105,7 @@
return result.getContent();
})
.push(function (result) {
result_list.push(result.sub);
result_list.push(result[gadget.state.key]);
});
}
});
......@@ -151,7 +151,7 @@
return sub_gadget.getContent();
})
.push(function (result) {
var value = result.sub;
var value = result[gadget.state.key];
if (sub_gadget.element === gadget.element.lastChild) {
if (value) {
return appendListField(gadget, "",
......
......@@ -228,7 +228,7 @@
</item>
<item>
<key> <string>serial</string> </key>
<value> <string>976.20933.34738.37956</string> </value>
<value> <string>977.38881.34981.23125</string> </value>
</item>
<item>
<key> <string>state</string> </key>
......@@ -246,7 +246,7 @@
</tuple>
<state>
<tuple>
<float>1560245604.81</float>
<float>1570192783.86</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