I am trying to bind custom dataset to display some values/rows of dataset table: 2 columns and x rows based on the roster/role. I need info on the syntax for binding dataset expression property to get this done using something like this?
for table 1:
"#NAMES"
"String Column", "Int Column"
"#TYPES"
"str","I"
"#ROWS","2"
"String 1","Int 1"
"String 2","Int 2"
tables looks like something like this but
table 1/dataset
String Column | Int Column |
---|---|
String 1 | Int 1 |
String 2 | Int 2 |
Another table 2 /dataset
String Column | Int Column |
---|---|
String 3 | Int 3 |
String 4 | Int 4 |