Skip to content

Instantly share code, notes, and snippets.

@travist
Last active May 10, 2019 09:48
Show Gist options
  • Save travist/cda7a4abf0dfa287806aa9039a2fccf3 to your computer and use it in GitHub Desktop.
Save travist/cda7a4abf0dfa287806aa9039a2fccf3 to your computer and use it in GitHub Desktop.
Custom Component
import { BaseComponent } from './Base';
import { Formio } from 'formiojs/full';
export class CustomComponent extends BaseComponent {
constructor(component, options, data) {
super(component, options, data);
}
}
Formio.registerComponent('custom', CustomComponent);
@srinvasneelamraju
Copy link

how to disable pop up in custom component like check matrix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment