Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This call is to a helper method GetCSVData that parses the CSV files and returns a DataTable with the values.

Code Block
 DataTable dtOrderInfo = GetCSVData("//data//OrderInfo.csv");

...

7. Use SetDataSource() to bind the order details arrays. Note that the data source name is the last string

Code Block
 WT.SetDataSource(detailsArray, detailColNames, "OrderDetails");

...