How to add ComboBox to settings gear menu in Rally app
问题 Currently I'm working on an app that displays a chart of defects. The chart is to be filtered by a selection of checkboxes that the user can change around to fit his / her needs. These checkboxes are located in the gear menu of the app, under 'settings'. In App.js I have a function that looks like this: getSettingsFields: function() { return [ { xtype: 'fieldcontainer', fieldLabel: 'States', defaultType: 'checkboxfield', items: [ {...} ... ] } ]; } This function works perfectly so far and