Appending Huge data in Data Grid

0
Hi Team, I have a microflow that is returning a List with 150 columns and 1 record in each column . So in data grid it will be 150 columns and one row . As showing so much columns is not possible in data grid as their is no horizontal scroll . I need some support if their is any way to show all the columns with a horizontal scroll or any way to transpose the list data .
asked
3 answers
3

Do you have always one line as result? If yes, why aren’t you handle it as a details page and show the data as text fields, then a data grid?

answered
3

Horizontal scrolling is possible with css.

you need a custom css class (do it in the sass files, not directly in css) that sets a minimum width for the content. Something like:

yourcustomclass {
   .mx-datagrid-content-wrapper table {
      min-width: yourminimumwidth;
   }
}

answered
2

Hi Shivam,

If it is only one row, and you don’t need the  headers, you could also consider a list view styled horizontally.

Cheers,

Andries

answered