How to populate TableView with records from DataGrid?
Hi,
I would like to populate records to TableView to be able get the DISTINCT value of a column. Data will came from a DataGrid.DataSource.
Can't find the right method here:
http://help.openspan.com/52/Components/Data_Table_Viewer.htm
Is this done calling AddNew method in a loop? Is there an alternative? Like is it possible to translate this C# code to Pega?
Hi,
I would like to populate records to TableView to be able get the DISTINCT value of a column. Data will came from a DataGrid.DataSource.
Can't find the right method here:
http://help.openspan.com/52/Components/Data_Table_Viewer.htm
Is this done calling AddNew method in a loop? Is there an alternative? Like is it possible to translate this C# code to Pega?
DataView view = new DataView(table);
Thanks!