Search In This Blog

2022-06-25

Salesforce lwc: Box list design / show words over image (samples)

Show elements over image in box 1. 
Sample image

Salesforce lwc: Radio Group design samples

 Base Type

Code
<lightning-radio-group name="Radio Group"
label="Radio Group"
options={options}
value={value}
type="Radio"></lightning-radio-group>

2022-06-22

Salesforce lwc: datatable set multiple checkbox as radio checkbox

Default checkbox of lightning-datatable is multiple checkbox.

Set atrribute [max-row-selection="1"] can change to radio checkbox.




2022-06-16

Dataloader Error: Java Runtime (class file version 55.0), this version is up to 52.0

Java Runtime 52.0 -> Java 8

Java Runtime 55.0 -> Java 11 or new

So need install Java 11 or new to replace Java 8.


After installed java 11, do not forget to check you Environment Variables [JAVA_HOME].

Make sure JAVA_HOME is the new path to java 11 file.