columnTitle - Column Title

Specifies the title of the column.

Category

dojo-widget

Syntax

columnTitle="name"

Usage

In Design mode, click All Properties and look for columnTitle under dojo-widget.

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.

Examples

This example displays three columns from the AllContacts 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>