• Appends a single row at the end of the selected table.

    Type Parameters

    • T extends object

      The type of the row data.

    Parameters

    • ds: Ds<T> | Dsm<T>

      The dataset or dataset manager.

    • source: T

      The row to append.

    • Optionaltarget: { changeSel?: boolean; select?: number | "tables" | T[]; useClone?: boolean }

      Optional target configuration.

      • OptionalchangeSel?: boolean

        Whether to update the selection.

      • Optionalselect?: number | "tables" | T[]

        Specifies the selection scope.

      • OptionaluseClone?: boolean

        Whether to clone the inserted row.

    Returns { success: boolean }

    • The result of the operation.