x-scroll is needs to be removed.

0
Hi Experts, I need to remove a x-scroll of the page where I did all type of tries for it to remove as for the class “.mx-dataview-content” the default properties set as overflow:auto and height:to some pixels as when I inspect it in browser it works and when I work add the same properties in local scss file the class is getting applied for all the internal dataviews of the page. Provide any valuable suggestions for it. Thanks in Advance.
asked
1 answers
1

We had this, and on the dataView object we added a random classname e.g. “fixoverflow” and then in the SCSS file added the following:

.fixoverflow > div:first-of-type {
    height: unset !important;
    overflow: unset !important;
}

answered