Disable return (enter) sign and arrows in text field with small length
I set string lenght 0-5, but still arrows are visible
Best Answers
-
Nicholas_Velich Cireson Consultant Ninja IT Monkey ✭✭✭✭Hi Marek,
That scrollbar is a bit of a nuisance for a single line, but is the default way that Internet Explorer displays "textarea" type elements (note: Chrome does not display the scrollbar).
This can be changed via CSS styling applied via JQuery, using the "Overflow" attribute. The following article references the CSS attributes you would need to apply: https://stackoverflow.com/questions/19424887/remove-scrollbars-from-textarea
For example, based on the label of the field:
$('label:contains("Example Label")').next().find('textarea').css("overflow", "hidden");
Thanks,
Nick0 -
Marek_Lefek Customer Advanced IT Monkey ✭✭✭Now there is a solution,. Mayby someone will need.
@SingleLineEntry tag, from https://community.cireson.com/discussion/2595/transforming-the-grid-picker/p5#Comment_122040
Answers
That scrollbar is a bit of a nuisance for a single line, but is the default way that Internet Explorer displays "textarea" type elements (note: Chrome does not display the scrollbar).
This can be changed via CSS styling applied via JQuery, using the "Overflow" attribute. The following article references the CSS attributes you would need to apply: https://stackoverflow.com/questions/19424887/remove-scrollbars-from-textarea
For example, based on the label of the field:
$('label:contains("Example Label")').next().find('textarea').css("overflow", "hidden");
Thanks,
Nick
@SingleLineEntry tag, from https://community.cireson.com/discussion/2595/transforming-the-grid-picker/p5#Comment_12204