Solved
Row grid

we have this grid but the user wants like below how can we transpose this grid to row wise grid


we have this grid but the user wants like below how can we transpose this grid to row wise grid

Try creating the transposed data set by using the looping function and a!map() and then pass it to read only grid.
col1:"Id1"
col2:"Text1"
-------------
col1:"Id2"
col2:"Text2"
-------------
col1:"Id3"
col2:"Text3"
This should be converted to
{
a!map(
col1:"Id1",
col2:"Id2",
col3:"Id3"
),
a!map(
col1:"Text1",
col2:"Text2",
col3:"Text3"
)
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.