@nextcloud/dialogs
    Preparing search index...

    Interface RadioNodeList

    The RadioNodeList interface represents a collection of elements in a form returned by a call to HTMLFormControlsCollection.namedItem().

    MDN Reference

    interface RadioNodeList {
        length: number;
        value: string;
        forEach(
            callbackfn: (
                value: HTMLInputElement,
                key: number,
                parent: NodeListOf<HTMLInputElement>,
            ) => void,
            thisArg?: any,
        ): void;
        item(index: number): HTMLInputElement;
        [index: number]: HTMLInputElement;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The NodeList.length property returns the number of items in a NodeList.

    MDN Reference

    value: string

    If the underlying element collection contains radio buttons, the RadioNodeList.value property represents the checked radio button.

    MDN Reference

    Methods