BUG 11086 "Cases list search doesnt work when a text is added on the

filters" SOLVED

-On "Category", "Process", "User" and "Delegate date" filters, its
posible to add any text on its fields and the search doesnt work with
this texts.
-Solved, The final user cant add any kind of text to the filters but to
choose one option listed on them, so the search works with this values.
This commit is contained in:
marcelo
2013-04-17 10:57:12 -04:00
parent cebb2f9f81
commit 2cdef5d4fa

View File

@@ -865,7 +865,7 @@ Ext.onReady ( function() {
var comboProcess = new Ext.form.ComboBox({
width : 180,
boxMaxWidth : 200,
editable : true,
editable : false,
displayField : 'APP_PRO_TITLE',
valueField : 'PRO_UID',
forceSelection: false,
@@ -941,7 +941,7 @@ Ext.onReady ( function() {
var comboCategory = new Ext.form.ComboBox({
width : 180,
boxMaxWidth : 200,
editable : true,
editable : false,
displayField : 'CATEGORY_NAME',
valueField : 'CATEGORY_UID',
forceSelection : false,
@@ -1108,7 +1108,7 @@ Ext.onReady ( function() {
triggerAction : 'all',
emptyText : _('ID_ALL_USERS'),
selectOnFocus : true,
editable : true,
editable : false,
width: 180,
allowBlank : true,
autocomplete: true,
@@ -1500,6 +1500,7 @@ Ext.onReady ( function() {
id:'dateFrom',
format: 'Y-m-d',
width: 120,
editable: false,
value: ''
});
@@ -1507,6 +1508,7 @@ Ext.onReady ( function() {
id:'dateTo',
format: 'Y-m-d',
width: 120,
editable: false,
value: ''
});