TreeINFO-For-M365 documentation
    Preparing search index...
    interface SaveOptions {
        disableValidation?: boolean;
        redirect?: boolean;
    }
    Index

    Properties

    disableValidation?: boolean

    When true, skips client-side validation and saves regardless of field errors.

    false
    
    // Save without running validation (e.g. saving a draft with incomplete data)
    await tisa.form.save({ disableValidation: true });
    redirect?: boolean

    When true, closes the form after saving (equivalent to clicking the Save button). When false or omitted, the form stays open. On a new form, the item is created and the form automatically switches to edit mode so further operations remain in context.

    false