I am a fan of using both the Field Renderer and Display Template to give context.
<field id="Business_State__c" type="REFPICK" displaytemplate="{{Name}} {{State_Code_c__c}}">
<filters/>
</field>
This gives me a great picklist that shows the state code and also the full state name.
This field features in a template:
<field type="COMBO" allowhtml="false">
<label>{{$Label.Business_Address}}</label> <template>{{Business_Address_1__c}} {{Business_Address_2__c}} {{Business_Address_3__c}} {{Business_City__c}} {{Business_State__c}} {{Business_Zip_Postal_Code__c}} {{Business_Country2__c}} </template> </field>
Which looks like this:
- Can I include the picklist formatting from the first example in the template?
- If so, can the picklist (with the 2 field Display Template) only appear on the popup, and not on the read layout?
- Can the lines that are missing in the above example not show on the read layout?