Forum Discussion

cartercjb's avatar
04-21-2022
Solved

ENABLE SCROLL BAR FOR TEXT WIDGET

IS THERE A SCRIPT TO ENABLE VERTICAL SCROLLING FOR A LONG TEXT WIDGET?  
  • harikm007's avatar
    harikm007
    04-21-2022

    cartercjb ,

    Here is the updated script:

    widget.on('ready', function(se, ev){
    	$('richtexteditor .r').css('overflow-y', 'scroll')
    
    })

    (You may need to click on widget to get focus on it, so that you can scroll it)

    -Hari