Gets or sets the display text of this item.
Namespace: MindFusion.Common.UI
File: ListItem.js
SyntaxJavaScript
Copy Code
|
|---|
get title() {} |
String. The title.
ExampleThe 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(); listView.items.add(item); |
See Also