0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

LWCの選択リストの取得(js側の自動取得)(レコードタイプによりの取得)

Posted at
1 / 2

A. レコードタイプが存在しない場合、選択リストの自動的に取得方法
① picklistLwc.js
image.png
② picklistLwc.html
image.png
③ picklistLwc.js-meta.xml
image.png

B. レコードタイプが存在る場合、指定したレコードタイプの選択リストの取得方法
作成中。。。
①  レコードタイプ名が「レコードタイプ名」により、該当レコードタイプのレコードIDを取得する。  
  @wire(getObjectInfo, { objectApiName: Account_OBJECT})
  getAccountObjectInfo(result) {
   if (result.data) {
    const recordTypeList = result.data.recordTypeInfos;
    this.accountRecordTypeId = Object.keys(recordTypeList).find((recordType) => recordTypeList[recordType].name === 'レコードタイプ名');
   }
  }
② 取得したレコードタイプのレコードID(accountRecordTypeId)によって、対応の選択リストを取得する
  // typeの選択リストを取得する
  @wire(getPicklistValues, { recordTypeId:'$accountRecordTypeId', fieldApiName:    Type_FIELD})
  typeOption;

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?