Forum Discussion
Articulate2-5d2
3 years agoCommunity Member
Scrollbars still not working in text entry boxes
Hi all.
Are there any plans to make scrollbars work in text entry boxes? This has been an issue for about 6 months now.
I've got 'Add scroll bars' selected in the 'Overflow handling' options, bu...
Nedim
2 months agoCommunity Member
I usually use this JavaScript code for enabling scrollbars in multiline text entry fields. While it’s not a perfect solution, it does improve the experience. Hopefully, Articulate will address this in an upcoming update!
const TextAreaScrollbar = () => {
const textAreas = document.querySelectorAll('.acc-textinput');
textAreas.forEach(textArea => {
textArea.style.scrollbarWidth = 'thin';
});
};
setTimeout(TextAreaScrollbar, 100);