BUG 7084 the problem with the grid was solved reassign all cases by task.

This commit is contained in:
Alvaro Campos
2011-12-16 15:33:06 -04:00
parent 724bbabedd
commit f1928f2703
2 changed files with 30 additions and 17 deletions

View File

@@ -55,23 +55,29 @@
// create the combo instance
var comboUsersToReassign = new Ext.form.ComboBox({
width : 280,
boxMaxWidth : 180,
fieldLabel : 'Search',
fieldLabel : _('ID_SEARCH'),
editable : true,
forceSelection: false,
forceSelection: false,
minChars : 0,
valueField : 'userId',
displayField : 'userFullname',
selectOnFocus : true,
typeAhead : true,
autocomplete : true,
hideTrigger : Boolean,
alignTo : 'right',
mode : 'remote',
triggerAction : 'all',
emptyText : _('ID_ENTER_SEARCH_TERM'),
disabled : true,
width : 280,
boxMaxWidth : 180,
//lazyRender : true,
// store : new Ext.data.Store(),
store : storeUsersToReassign,
listeners:{
listeners:{
'select': function(comp, record, index) {
var row = Ext.getCmp('TasksToReassign').getSelectionModel().getSelected();
row.set('APP_REASSIGN_USER_UID', record.get('userUid'));