InputPanel: add new column type

This is useful to add things at the botton spaning 2 rows (comments)
This commit is contained in:
Dietmar Maurer 2014-05-06 12:50:29 +02:00
parent 8ceed9b8be
commit 0590a0d29b

View File

@ -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";
} }