Table Scrollbar Size

Is there a way to increase the width of the vertical scrollbars on tables. My clients are touchscreens and it is very difficult for the users to click on the small up and down arrows on the scrollbars. Typically I have just set the scrollbar size in the OS and the application inherits that. However, that doesn’t work with Ignition. I am assuming that the JAVA runtime must have some type of properties to set the scrollbar size, maybe?

Thanks

Try putting a script like this in your Client startup script:

[code]from javax.swing import UIManager

UIManager.put(“ScrollBar.width”, 25)[/code]

PERFECT!

Thanks Carl