Creating custom inline messages and prompts

When a text-box field, such as a Number Text Box Editor, is empty, Case Manager Client displays a prompt message as a popup tooltip. After the user enters data in the field, the tooltip goes away. In addition, Case Manager Client displays default messages if the user enters a value that is invalid or outside the range for the property.

You can provide custom prompts and messages by creating a custom JavaScript that uses the set method for the Controller class as shown in the following example:
var propertyController = controller.getPropertyController("F_CaseFolder", "ABC_Property1");
propertyController.set('promptMessage", "Enter your favorite color");
propertyController.set("invalidMessage", "The value that you entered is not valid.");
propertyController.set("rangeMessage", "Enter a value between {0} and {1}");