|
» Configuration examples ListControl
Examples:
1 |
2 |
3 |
4
Configuration example 3
Configuration:
- List without Refresh and Add button .
- Display of maximum 5 lines per page.
- CheckBox-column for selection of lines. Several rows can be marked simultaneously be specifying the Select-Mode (here, multiple). Specifying "single" allows the selection of only one line or row.
- Drilldown column (for going to the detail view of the data record).
- Two text columns.
<ctrl:list
id="carlist1"
action="sample102/carBrowse"
name="cars"
title="Car List"
width="465"
rows="5"
select="multiple">
<ctrl:columncheck
title="Check"
property="checkState"/>
<ctrl:columndrilldown
title="Id"
property="id"
width="65"/>
<ctrl:columntext
title="Name"
property="name"
width="350"/>
<ctrl:columntext
title="Manufacturer"
property="manufacturerName"
width="150"/>
</ctrl:list>
|
|
|
|
Configuration examples
ListControl
|
|