Examples:
1 |
2 |
3 |
4
Configuration example 2
Configuration:
- List without Refresh and Add button.
- Display of maximum 15 lines per page.
- Drilldown column (for going to the detail view of the data record).
- Two text columns.
<ctrl:list
id="userlist1"
action="sample101/userBrowse"
name="users"
title="User List"
width="500"
rows="15">
<ctrl:columndrilldown
title="Name"
property="name"
width="350"/>
<ctrl:columntext
title="Id"
property="userId"
width="65"/>
<ctrl:columntext
title="Role"
property="role.value"
width="150"/>
</ctrl:list>
|