djxmLineItem - Rounded List Item

Provides a way to link to other mobile pages.

Category

Mobile

Syntax

<xe:djxmLineItem attributes>content</xe:djxmLineItem>
Table 1. Essential properties
Property Description
id Defaults to djxmLineItem1, djxmLineItem2, and so on.
Table 2. All properties
Category Properties
accessibility title
basics binding, dir, icon, id, label, lang, loaded, moveTo, rendered, rendererType, transition
dojo dojoAttributes, dojoType, tooltip
styling disableTheme, style, styleClass, themeId

Examples

This example demonstrates a mobile application with one page which has a heading and a list item.
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" xmlns:xe="http://www.ibm.com/xsp/coreex">
	<xe:singlePageApp id="xpagesMobileApp"
		selectedPageName="homePage">
	<xe:appPage id="appPage1" pageName="homePage" resetContent="false">
		<xe:djxmHeading id="homePageHeading" label="Home"></xe:djxmHeading>
		<xe:djxmLineItem id="djxmLineItem1"
			moveTo="#viewPage" label="All Documents">
		</xe:djxmLineItem>
	</xe:appPage>
 	</xe:singlePageApp>
</xp:view>