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?
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;
}
}
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