Menu

Text field not resizing

0 votes

I have a Notes column as nvarchar(600) data type. In dbfront, the field is not resizing to allow the view of the whole text https://photos.app.goo.gl/7SSC57f1D86R9uV38

I can resize by dragging the lower right corner but after a while, it gets old :-)

Is there a way to fit the text in a box?

in Customization by (820 points)

1 Answer

0 votes
 
Best answer

Using CSS you can change most field layout attributes. In the Layout tab add a custom CSS class name to the field (e.g. 'notesLarge') and then include the following CSS in your custom CSS file.

textarea.notesLarge {
	min-height:100px;
}

For help on creating a custom CSS file see: CSS Field

by (64.3k points)
selected by
Welcome to the dbFront Q&A site, where you can ask questions and receive answers from other members of the community.
 | Minimalist Answer Theme by Digitizor Media
 |
Powered by Question2Answer
...