min and max width (or height) for textarea input

Is there a way to set a min and max width or height in the json struct used when loading a form struct (loadStruct)?

The textarea can be resized by default in firefox, for example. By setting the min-width, max-width parameters in style, we can limit the resizing behaviour. Is there a way to describe this in json?

Hello

var formdata = [{type: “input”, rows: 3, name: “myInput”…}];

var inp = myForm.getInput(“myInput”);
this will give you textarea (or input) dom element, and you can set events and attributes which you want.