cancel
Showing results for 
Search instead for 
Did you mean: 

ENABLE SCROLL BAR FOR TEXT WIDGET

cartercjb
10 - ETL
10 - ETL

IS THERE A SCRIPT TO ENABLE VERTICAL SCROLLING FOR A LONG TEXT WIDGET?

 

1 ACCEPTED SOLUTION

harikm007
13 - Data Warehouse
13 - Data Warehouse

@cartercjb ,

Here is the updated script:

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

})

harikm007_0-1650526381924.png

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

-Hari

View solution in original post

5 REPLIES 5

harikm007
13 - Data Warehouse
13 - Data Warehouse

@cartercjb ,

Please try this script : 

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

})

-Hari

Thanks, Hari. That seems to only have enabled it for horizontal scrolling. Is there a wa y to specify vertical scrolling? @harikm007 

harikm007
13 - Data Warehouse
13 - Data Warehouse

@cartercjb ,

Here is the updated script:

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

})

harikm007_0-1650526381924.png

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

-Hari

nikitabansal
7 - Data Storage
7 - Data Storage

@harikm007  is there a way to disable a scroll bar my text blox widget comes up with a scroll bar 

Wantti
8 - Cloud Apps
8 - Cloud Apps

Hello,

when I am adding an image to the text widget, the scroll bar doesn't go until the bottom. The image won't be shown entirely.
How can I make sure that the entire text widget will be shown?

by the way: is there a better way to add descriptions to the dashboard. I need to add explanations as my users need to understand how to read the dashboard.