control.updateLevel3SelectItem()
- Last UpdatedJun 25, 2024
- 1 minute read
Use control.updateLevel3SelectItem() method to select records in a hierarchical list at the third level.
Syntax
control.updateLevel3SelectItem(object);
Parameters
|
Parameter |
Description |
|---|---|
|
object |
Item to update. |
Return Value
None.
Example
// Select each of the sibling and enable slide-toggle.
for (var i=0; i<selectItem.siblings.toggle.length; i++)
{
selectItem.siblings.toggle[i].level3ToggleEnable = true;
}
control.updateLevel3SelectItem(object);