I want to remove the scrollbars for the combox box
new Ext.form.ComboBox({
name:'cmbRating',
id:'cmbRat',
store: new Ext.data.SimpleStore({
fields: ["wordRating","wordRatingValue"],
data: [["0","XXXX Word"],["1","AAAAA Word"],["2","SSSSS Word"]]
}),
displayField:'wordRatingValue',
valueField:"wordRating",
mode: 'local',
triggerAction: 'all',
forceSelection: true,
editable: false,
allowBlank: false,
blankText: 'Plase choose a rating.',
fieldLabel: '*Rating',
anchor: '90%'
})
this is the code i am using, in local IE11 browser no scrollbars are coming when i deploy the same thing in our testing environment i am getting the scrollbars like this
please suggest me how to resolve this issue