Commit e8e30d40 authored by Sven Franck's avatar Sven Franck

fixed display of input type button and images in table cells

parent ea78efa9
......@@ -555,6 +555,11 @@
// custom cells have text/i18n defined
if (cell.custom === undefined) {
if (field_dict[cell.column] === undefined) {
util.error({
"error": "mapRows: Missing definition for " + cell.column
});
}
cell.text = field_dict[cell.column].widget.title;
cell.text_i18n = field_dict[cell.column].widget.title_i18n;
}
......@@ -3630,6 +3635,7 @@
break;
case "submit":
case "reset":
case "button":
container_class_list = "ui-btn ui-input-btn";
need_text_node = true;
break;
......
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