listViewColumn - iNotes® List View Column
Includes a column of an iNotes® list view for display.
Category
iNotes®Syntax
<xe:listViewColumn attributes>content</xe:listViewColumn>
Property | Description |
---|---|
id | Defaults to listViewColumn1 , listViewColumn2 ,
and so on. |
columnName | Specifies the name of the column in
the storage component. A specification of _item means
everything in the storage component. |
columnTitle | Specifies a title for the column in
the display. If this property is empty and showColumnNameForEmptyTitle in
the parent iNotes® List
View object is true, the title of the column in the storage
component is used. |
Category | Properties |
---|---|
basics | binding, id, loaded, rendered, rendererType |
dojo-widget | columnName, columnTitle |
narrowmode | beginWrapUnder, narrowDisplay, sequenceNumber |
styling | disableTheme, extendable, fixedWidth, icon, response, showGradient, sort, style, themeId, twistie, width |
Usage
Use this control with iNotes® List View.This control is not tested against the latest accessibility standards. The recommended accessible path is the Data Table control.
Examples
This example displays three columns from theAllContacts
view in the current application.<xe:restService id="restService2">
<xe:this.service>
<xe:viewJsonService defaultColumns="true"
viewName="AllContacts">
</xe:viewJsonService>
</xe:this.service>
</xe:restService>
<xe:listView id="listView1"
storeComponentId="restService2">
<xe:listViewColumn id="listViewColumn3"
columnName="FirstName" columnTitle="First Name" >
</xe:listViewColumn>
<xe:listViewColumn id="listViewColumn2"
columnName="LastName" columnTitle="Last Name">
</xe:listViewColumn>
<xe:listViewColumn id="listViewColumn1"
columnName="EMail" columnTitle="Email">
</xe:listViewColumn>
</xe:listView>