Search
ListItem.title Property
See Also
 






Gets or sets the display text of this item.

Namespace: MindFusion.Common.UI
File: ListItem.js

 Syntax

JavaScript  Copy Code

get title() {}

 Property Value

String. The title.

 Example

The following example creates a new ListItem and adds it to the items collection of a ListView control. It disables drag and drop for this item by setting interactive to false.

JavaScript  Copy Code

var item = new ui.ListItem();
item.title = "Armillaria Ponderosa";
item..interactive  = false;

listView.items.add(item);

 See Also