XULTreeViewRecord.unHide Member

unhide this record and all descendants.

Syntax

object.unHide();

Returns

Remarks

See Also

Source Code

function xtvr_uhide ()
{
if (!this.isHidden)
return;
this.isHidden = false;
this.invalidateCache();
var row = this.calculateVisualRow();
if (this.parentRecord)
this.parentRecord.onVisualFootprintChanged (row, this.visualFootprint);
}