
Can someone help me how to populate a combobox with Objects?
Please, I’m new to Lightning.
<lightning:combobox type="text" aura:id="object"
name="object"
placeholder="-Select-"
options="{!v.objects}"
onchange="{!c.handleChange}"/>
2 answers

Hi ,In lightning combobox, options Attribute - array of objects (Each object contains label and value)value Attribute - object (Specifies the value of an input element).Reference link : https://developer.salesforce.com/docs/component-library/bundle/lightning:combobox/specificationThanks,