I can't find any properties that will allow me to control the vertical alignment of a text area (or text field) - I tried setting it via css but it does not make a difference. Basically, I want to align the text value to centre instead of the top.
Code:
isc.DynamicForm.create({
width: 300,
fields: [
{title:"Description", type:"textArea", defaultValue:"Test", textBoxStyle:"myBoxedGridCell"}
]
});
.myBoxedGridCell {
font-family:Verdana,Bitstream Vera Sans,sans-serif; font-size:11px;
color:red;
vertical-align: bottom;
}
Comment