From c6776f3c38faad68d87354b0c8536517ae06e0f1 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Wed, 13 Jan 2016 16:51:55 +0100 Subject: [PATCH] cleanup previous patch --- www/manager6/form/ComboGrid.js | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/www/manager6/form/ComboGrid.js b/www/manager6/form/ComboGrid.js index 6bbb7cc15..5e8612f4f 100644 --- a/www/manager6/form/ComboGrid.js +++ b/www/manager6/form/ComboGrid.js @@ -1,8 +1,8 @@ /* - * ComboGrid component: - * a ComboBox where the dropdown menu (the "Picker") is a Grid with Rows and Columns - * expects a listConfig object with a columns property - * roughly based on the GridPicker from https://www.sencha.com/forum/showthread.php?299909 + * ComboGrid component: a ComboBox where the dropdown menu (the + * "Picker") is a Grid with Rows and Columns expects a listConfig + * object with a columns property roughly based on the GridPicker from + * https://www.sencha.com/forum/showthread.php?299909 * */ Ext.define('PVE.form.ComboGrid', { @@ -11,8 +11,10 @@ Ext.define('PVE.form.ComboGrid', { // this value is used as default value after load() preferredValue: undefined, - // If set to `true`, allows the combo field to hold more than one value at a time, and allows selecting multiple - // items from the dropdown list. + + // If set to `true`, allows the combo field to hold more than one + // value at a time, and allows selecting multiple items from the + // dropdown list. multiSelect: false, defaultPickerConfig: { @@ -146,5 +148,5 @@ Ext.define('PVE.form.ComboGrid', { } } }); - }, -}); \ No newline at end of file + } +});