Gets or sets the tooltip of this ListItem.
Namespace: MindFusion.Common.UI
File: ListItem.js
JavaScript Copy Code |
---|
get tooltip() {} |
String. The tooltip.
The following example creates a new ListItem with tooltip and adds it to the items collection of a ListView control.
JavaScript Copy Code |
---|
listView = new ui.ListView(document.getElementById("listView")); var item = new ui.ListItem(); listView.items.add(item); |