Skip to main content

Unable to display a UI field that I have configured in one model with a picklist from another model. 
Beleive that something is incorrect with the configuring.

In my task model, I have configured a UI field which I have called "1st Vehicle Discussed". 
This field is set up as:
    - General Tab
        - Field Id: 1st Vehicle Discussed
        - Display Type: Combobox 
        - Picklist source: Rows in Model
        - Return Type: Text
    - Picklist model
        - Model: Fund (this is a custom object)
        - Entry value: {{Bucketed_Fund_Names__c}}  
            - Bucketed_Fund_Names__c field is a picklist field in the Fund object & enabled on Fund Model
        - Entry label: {{Bucketed_Fund_Names__c}}
        
In the form that displays 1st Vehicle Discussed, I just see a blank drop down. However if I use {{Name}}
instead of {{Bucketed_Fund_Names__c}} in the UI field picklist model, I do see the Fund record names in
the dropdown.

Is there something that I am missing in configuring the picklist to see the Fund Bucketed_Fund_Names__c picklist dropdown/values? 

Hello,

It sounds like you have everything configured like I would expect, can you do a quick check to verify that the Fund model has data populated in the Bucketed_Fund_Names__c field in the model? The most accurate way to check is running something like

skuid.debug.model(‘Fund’).data

in the console to see what the model has available. This is mostly just to ensure that the picklist is where the issue lies.

 


Hi Matt,

I have checked. Initially I did not have the field filled in on any of the Fund records. To be safe, I have populated most of the records in the Fund object. Same results; my UI field is blank. 

The console debug does show the picklist value used in each record. Good thought!

I am really wanting to use the picklist field/values and would not expect that I need to populate the records to get the picklist values. 

FYI, I can access the Fund model picklist field values directly in the Fund model. I created a table based on the Fund model and include the Bucketed_Fund_Names__c picklist field on it, Picklist values show on the field dropdown.

Open to more ideas….


Reply