• JMap.Table.updateRow

    Update a row from a table

    Parameters

    • dataSourceId: JId

      The ID of the data source.

    • rowId: number

      Id of the row to be updated.

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

      the data of the row to be updated.

      • [key: string]: any

    Returns Promise<void>

    Example

    // Update the row with an id of 3086627 from the dataSet with id : "be4552e1-d89d-48ec-a417-7b99d14b4d7b".
    JMap.Table.updateRow("be4552e1-d89d-48ec-a417-7b99d14b4d7b", 3086627, {city: "Montreal", country: "Canada"});