XULTreeViewRecord.invalidate Member
invalidate this row in the tree
Syntax
object.invalidate();
Returns
Remarks
See Also
Source Code
function xtvr_invalidate()
{
var tree = this.findContainerTree();
if (tree)
{
var row = this.calculateVisualRow();
if (row != -1)
tree.tree.invalidateRow(row);
}
}