Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
403 B

  1. import { LightningElement } from "lwc";
  2. import OmniscriptCheckbox from "vlocity_cmt/omniscriptCheckbox";
  3. export default class OmniCheckboxComponent extends OmniscriptCheckbox {
  4. connectedCallback() {
  5. console.debug("OmniCheckboxComponent - connected");
  6. this.omniApplyCallResp({'checkbox':false});
  7. }
  8. handleChange(evt) {
  9. console.debug("hangleChange: ", evt);
  10. }
  11. }