Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have data for ex like below
Type,Val
A,10
A,10
A,10
B,20
B,20
B,21
I need same as above in the straignt table, my observation is when I checked in the table box it is appearing like below
Type,Val
A,10
B,20
B,21
so How can I show the output in straght table like below
Type,Val
A,10
A,10
A,10
B,20
B,20
B,21
-Priya
In your script add rowNo() while loading data.
Like
Load RowNo() as rowId,
* from Table;
In front end straight table take all field and In presentation tab Hide rowId column.
Regards,
In your script add rowNo() while loading data.
Like
Load RowNo() as rowId,
* from Table;
In front end straight table take all field and In presentation tab Hide rowId column.
Regards,
Have a look at this.