Search
ListItem.loaded Property
See Also
 






Gets a value indicating whether this item is loaded and ready for interaction.

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

 Syntax

JavaScript  Copy Code

get loaded() {}

 Property Value

Boolean

 Example

The following code checks if the first ListItem in a ListView is loaded:

JavaScript  Copy Code
// check if the first list item is loaded
var firstItem = listView.items.items()[0];
if (firstItem.loaded)
{
    //do something
}

 See Also