• Appends multiple rows at the end of the selected tables.

    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 rows to append.

    • Optionaltarget: {
          changeSel?: boolean;
          select?: number[] | "tables";
          useClone?: boolean;
          which?: "top" | "all" | "bottom";
      }

      Optional target configuration.

      • OptionalchangeSel?: boolean

        Whether to update the selection.

      • Optionalselect?: number[] | "tables"

        Specifies the selection scope. Defaults to "tables".

      • OptionaluseClone?: boolean

        Whether to clone the inserted rows.

      • Optionalwhich?: "top" | "all" | "bottom"

        Determines which tables to insert into. Defaults to "all".

    Returns { success: boolean }

    • The result of the operation.