2021-07-01から1ヶ月間の記事一覧

ワイヤサービスでの基本コンポーネントの使用

developer.salesforce.com

LWC【Lightning Design System】

www.lightningdesignsystem.com

【Python】Seleniumでページ全体のスクリーンショット撮るならマルチプロセスで!

qiita.com

カスタム例外の作成

developer.salesforce.com

【Apex】ログインユーザのプロファイル判定

gawatari.com 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /* 例:システム管理者の判定 */ Boolean isAdministrator = false; // ログインユーザのプロファイル取得 Profile p = [ SELECT Id ,Name FROM Profile WHERE Id =: UserInfo.getProfileId() LIMIT 1 ];…

Lightning Web ComponentsのApexクラス呼び出し方法

note.com import ApexMethod1 from '@salesforce/apex/ApexClass.ApexMethod1'; import ApexMethod2 from '@salesforce/apex/ApexClass.ApexMethod2'; import ApexMethod3 from '@salesforce/apex/ApexClass.ApexMethod3'; async handleOKClick(event) { // …

【Lightning Web Component】Apexを呼び出してみよう【Salesforce】

keneloper.com