Using 1.1.0.RELEASE a text area generated by scaffolding seems to default to cols="20". If I change textarea.tagx to include a "cols" property, it doesn't have any affect:
It still renders with cols="20".Code:<form:textarea id="_${sec_field}_id" path="${sec_field}" disabled="${disabled}" cols="40" />
I also changed the width in css since it appears both the css and cols constrains the width:
Code:.dijitTextArea{ min-height:5.5em !important; max-height:22em !important; overflow-y: auto !important; max-width: 400px; }


Reply With Quote