Apologies for the somewhat remedial question. I have a project I'm working on where I need to populate a table with all available stations from a database query, then have a boolean/checkbox next to each one to display to the user select which stations will be used based on a selected configuration.
I have two custom dataset properties, one which populates all available stations, and the other which provides an ordered list of station id's from the selected table. Here's where I'm having trouble
how do I populate a power table from each dataset? I assume it is through an expression binding but I'm only familiar with using these to populate a single value, not write to a table. Here I need to be able to join two datasets to each other to have one calculated column (the one displays whether the station in the row is part of the selected configuraiton)
For Reference:
Property AllStationsForLine
Columns: StationName, StationTypeId, StationPrefix
Property SelectedConfig
Columns: ConfigId,ProcessOrder,StationTypeId
Desired Powertable: all stations from AllStationsForLine as rows
Columns: Boolean "Used", StationPrefix,StationName,