Skip to content
This repository has been archived by the owner on Oct 31, 2022. It is now read-only.
maxSS edited this page Sep 13, 2019 · 9 revisions
import { JamSubmitModule } from 'ngx-jsonapi-material';

Selector: jam-submit

Properties
Name Value type Required Description
@Input() disabled boolean false
@Input() noCancel boolean false
@Input() submitLabel string false
@Input() loaded boolean false
@Output() accept EventEmitter<any> true
@Output() cancel EventEmitter<any> false

Simple submit

<jam-submit
    (cancel)="cancel()"
    (accept)="save()"
    [loaded]="book.is_saving"
></jam-submit>
Clone this wiki locally