Commit f15d8280 authored by Sven Franck's avatar Sven Franck Committed by Xiaowu Zhang

erp5_web_renderjs_ui: fixed table body and foot being appended at wrong place

parent e5555cac
...@@ -331,10 +331,15 @@ ...@@ -331,10 +331,15 @@
return gadget.translateHtml(temp.innerHTML);\n return gadget.translateHtml(temp.innerHTML);\n
})\n })\n
.push(function (my_translated_html) {\n .push(function (my_translated_html) {\n
var temp = document.createElement("div");\n var new_body,\n
new_foot,\n
temp = document.createElement("div");\n
\n \n
temp.innerHTML = my_translated_html;\n temp.innerHTML = my_translated_html;\n
gadget.props.element.appendChild(temp.firstElementChild);\n new_body = temp.querySelector("tbody");\n
new_foot = temp.querySelector("tfoot");\n
table.appendChild(new_body);\n
table.appendChild(new_foot);\n
return gadget;\n return gadget;\n
});\n });\n
});\n });\n
...@@ -476,7 +481,7 @@ ...@@ -476,7 +481,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>940.2150.5227.15428</string> </value> <value> <string>940.2151.12481.15257</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -494,7 +499,7 @@ ...@@ -494,7 +499,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1420237871.41</float> <float>1420243220.12</float>
<string>GMT</string> <string>GMT</string>
</tuple> </tuple>
</state> </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