cancel
Showing results for 
Search instead for 
Did you mean: 

Display table in horizontal

0 Kudos

Hy everyone, is it possible to display a table in horizontal in a view ?

AAAAA | BBBBBBB | CCCCCCC |

000001 | text1 | value1 |

000002 | text2 | value2 |

000003 | text3 | value3 |

000004 | text4 | value4 |

000005 | text5 | value5 |

Instead, I would display table without header: :

000001 | text1 | value1 | 000002 | text2 | value2 |000003 | text3 | value3 |000004 | text4 | value4 |000005 | text5 | value5 |...........

Thanks a lot.

Accepted Solutions (1)

Accepted Solutions (1)

ChrisPaine
Active Contributor
0 Kudos

Hello,

yes it is possible.

It could be done with a fair amount of dynamic view programming - creating several tables without headers, populating the contents of the table with value from the context (not binding the context as you cannot have the selected index varying across multiple tables - at least not do this and hide any scroll bar) and just putting them together.

There are probably other solutuons - but none of them are simple - check "display as horizontal table checkbox" type solutions.

I would strongly reccommend not doing this. It would be difficult to maintain, and even from the user point of view - understand what was being displayed.

Answers (1)

Answers (1)

0 Kudos

Ok thank you !!