Ask a Question
Ask Question Login
Corporate Training
  1. Community
  2. Salesforce
  3. Question
Salesforce

Why is Lightning-Combobox not showing the dropdown list?

Asked by Elonjigar May 12, 2023 1.7K views 1 answer
Share

About this question

 I'm building a lwc combobox with calling Apex method. What I want to do is to show all field labels of Account in a dropdown list. I confirmed the lwc receives the value from Apex method but my lwc doesn't show anything if I clicked the button as follows:

Here's my JS code:

import { LightningElement,track, wire } from 'lwc'; import retrieveFields from '@salesforce/apex/RetrieveShinseiFields.retrieveFields'; export default class DisplayShinseiFields extends LightningElement { @track fieldsInfo=[]; @track obj; value; @wire(retrieveFields) wiredLabels({error, data}){ if(data){ for(var key in data){ this.obj={label:key, value:data[key]}; this.fieldsInfo.push(this.obj); } } if(error){ this.error=error; } } handleChange(event) { this.value = event.detail.value; } }
And the Apex class:
public with sharing class RetrieveShinseiFields { @AuraEnabled(cacheable=true) public static Map retrieveFields(){ Map fields = Account.getSObjectType().getDescribe().fields.getMap(); Map fInfo = new Map(); for(SObjectField f : fields.values()) { string fLabel = f.getDescribe().getLabel(); string fName = f.getDescribe().getName(); fInfo.put(fLabel, fName); } System.debug(finfo); return fInfo; } }
My html

Your answer

1 Answer

More Salesforce discussions

Learn & Explore

Free tutorials and interview questions from industry experts — learn the skill, then get ready to prove it.

Latest Salesforce Blogs

Guides, tips and career advice on Salesforce from JanBask experts.