Skip to content
Snippets Groups Projects
Commit 329a4f1c authored by Prasad's avatar Prasad
Browse files

Merge branch 'Assigned_to_Advance_Search' into 'master'

#1117 :: Uma ::Assigned to in Advance search not populating data

See merge request !420
parents 191d75ee 689c5b16
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,11 @@ Vtiger_Field_Js('Vtiger_Owner_Field_Js',{},{
* Function to get the picklist values
*/
getPickListValues : function() {
return this.get('editablepicklistvalues');
var pickListValues = this.get('editablepicklistvalues');
if (pickListValues == ''){
pickListValues = this.get('picklistvalues');
}
return pickListValues;
},
getUi : function() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment