Hi!
I want to increase the width and height of a short string property in edit mode. This so the user can se all the 255 characters he's supposed to type in. Making it an long string is not an option if I can’t control its size. Any ideas?
//Sebastian
You can create your own property type, inheriting from the PropertyString property class, and make it render a text area instead of the normal input field.
After that, you change your property to use the new type. That should do the trick.
/Steve