January 13, 2026
Adding items to Launch Pad Widget
Learn how to add items via My Apps Content App
What properties do you want to collect as part of this process?
Internally all property values are stored as strings (except for File and EmbeddedImage)
When designing the "Working" view for a task, the system provides default view templates for properties which provide 2 way binding when used on the Akumina Flow widgets. So for example a "Text" property would be built something like below:
<input maxlength="80" type="text" data-bind="knockout 2 way binding details" />
The "maxlength=80" clause comes from what was entered in the second field in the "Type" column. Refer to "MANAGER_NAME" property displayed above.
These HTML settings allow you to control how the property is displayed on every task's working view. For each property type, the system initializes this field to default settings.
While you can always customize the HTML in the "Working" view any way you want, it is convenient to use the property's HTML settings.
So what can you use the HTML settings for? Some common uses are:
If you are looking for formatting/validating standard types like email or telephone, it would be better to manually change the type="text" setting to the desired type; as in type="email".