• JMap.Table.createRow

    Create a row from a table

    Parameters

    • dataSourceId: JId

      The Id of the data source.

    • row: {
          [key: string]: any;
      }

      the data of the row to be updated.

      • [key: string]: any

    Returns Promise<void>

    Example

    // Create a row in the dataSet with id : "be4552e1-d89d-48ec-a417-7b99d14b4d7b" with the data: {city: Montreal, country:Canada}.
    JMap.Table.createRow("be4552e1-d89d-48ec-a417-7b99d14b4d7b", {city: "Montreal", country: "Canada"});