为什么使用Ititemselector的getValue会出现乱码

[size=large][code="java"]xtype: 'itemselector',
name: 'itemselector',
bodyStyle: 'padding:5px;',
imagePath: 'ext/ux/images/',
hideLabel:true,
multiselects: [{
height: 400,
width:200,
store: receiveRoleStore,
displayField: 'role',
valueField: 'id'
},{
height: 400,
width:200,
store: [['所有人员','所有人员']],
tbar:[{
text: '清除',
handler:function(){
addReceiveRolePanel.getForm().findField('itemselector').reset();
}
}]
}
][/code]
然后在另外一个方法中使用[code="java"]Ext.Msg.alert('Submitted Values', '你选择的值是'+
addReceiveRolePanel.getForm().getValues(true));[/code]
出现的值是乱码[/size]

检查一下页面的编码和这段js代码的编码