Using the OutSystems Input widget, I'm trying to increase the height of the input field. However, when I do so, the text gets typed vertically from the center. Instead, I want it to start from the top-left (starting point).
Any help or suggestions would be highly appreciated.
Thanks in advance!
@Amit Raghuwanshi ,
Can you share screenshot what exactly you want?
The height of input you can do by CSS.
In the attached Screenshot of my screen you can see that I've increased the height of an input , but it causes to write the text vertically from center , Instead it should allow to type the text from starting point which is top left
Why you did not go for TextArea?
Because if you want Top-left then once it fill then will be in next line.
Hi @Amit Raghuwanshi ,
You can use the <textarea> widget to get the desired height, and it also allows you to start typing from the top-left corner.
Hope this helps
Thanks.
Hi @Amit Raghuwanshi
1. If you want to increasing the height to support multiple line input, you can use the Text Area widget instead of the Input widget.
2.Otherwise if you want using the Input widget and just want to increase its height means ,you can try this class in input widget
.input-increaseheight {
height: 60px;
padding-top: 10px;
box-sizing: border-box;}
Thanks,
Sudha Narayanan