Apply Scrollbar to text

0
Hi All, I have a data-view and applied scrollbar to this. Have some text in the data-view, now I want to apply the scrollbar to only the text, so data-view should be in  constant stage. When I scroll only text should be scroll and data-view should not move. How can I achieve this, anyone help me out  
asked
3 answers
1

based on sass

    .activity-badge-card-description {
      top: 68px;
      position: absolute;
      left: 0px;
      width: calc(100% - 0px);
      font-style: italic;
      height: 73px;
      line-height: 14px;
      overflow-y: auto;
      overflow-x: auto;
      border: 1px solid #ddd;
      margin: 0px;
      padding-left: 2px;
      padding-right: 2px;
        
    }
 

answered
1

you could do this with some css.

you need to have a max-height, and allow it to scroll.

 

.yourclass{
  max-height: 200px;
  overflow-y: auto;
}

 

answered
0

You can try this widget https://appstore.home.mendix.com/link/app/105048/

answered