List views for Calem Touch can be customized. The steps include the list view customization in the web and configuration changes.
Step 1. List View Menu Customization
The first step is to customize the list view from Calem web interface. It is the same as customizing the list views for web. Teh difference is the selection of groups for touch. The touch groups are discussed below.
2. List View Template Customization
Templates are used for list items in list and lookup views. Templates are defined as client configurations in the system and can be customized. By default, a template is defined for its table or view. For instance, a default template for asset list and lookup is shown below.
// Asset table/view template CmConf['tpl_cm_asset']= [ '<div class=line1H><span class=fontbold>', '{asset_no}', ' </span>', '{note}</div>', '<div class="line1H fontnote1">{location_id}<span class="fontsmall">', '$<owner_user_id>: </span>{owner_user_id}</div>' ].join('');
Lets change the template by replacing "{note}" by "{description}" to show the "Description" instead of the "Note" field.
// Asset table/view template - show description CmConf['tpl_cm_asset']= [ '<div class=line1H><span class=fontbold>', '{asset_no}', ' </span>', '{description}</div>', '<div class="line1H fontnote1">{location_id}<span class="fontsmall">', '$<owner_user_id>: </span>{owner_user_id}</div>' ].join('');
Additional Resources
By accepting you will be accessing a service provided by a third-party external to https://calemeam.com/