Commit 270067a0 authored by Dietmar Maurer's avatar Dietmar Maurer

InputPanel: add new column type

This is useful to add things at the botton spaning 2 rows (comments)
parent 2bdcee9c
...@@ -74,6 +74,14 @@ Ext.define('PVE.panel.InputPanel', { ...@@ -74,6 +74,14 @@ Ext.define('PVE.panel.InputPanel', {
items: me.column2 || [] // allow empty column items: me.column2 || [] // allow empty column
} }
]; ];
if (me.columnB) {
items.push({
columnWidth: 1,
padding: '10 0 0 0',
layout: 'anchor',
items: me.columnB
});
}
} else { } else {
throw "unsupported config"; throw "unsupported config";
} }
......
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