Every Cloudfier application has a simple UI (automatically generated) that exposes 100% of the application functionality.
However, while convenient for “super-user” access or to let users interact with an application as soon as the domain model is done for early feedback, auto-generated UIs tend to have limited usability. Application developers are advised to build a custom UI (over the generated REST API that is part of every application) for better application-specific usability.
How to produce a multi-line text area?
Use a Memo property instead of a String property:
class Issue
attribute summary : String;
attribute description : Memo;
end;
attribute summary : String;
attribute description : Memo;
end;