@nospamproxy/core
    Preparing search index...
    • Get the value element for a specific label grid label.

      Parameters

      • labelGrid: Element
      • displayText: string

      Returns Element | null

      <label-grid>
      ...
      <label-grid-label value="Example 1"></label-grid-label>
      <element-1></element-1>
      <element-1></element-1>

      <label-grid-label value="Example 2"></label-grid-label>
      ...
      </label-grid>
      // "element" is the first "element-1" element from the example above:
      const element = getLabelGridValue(labelGrid, 'Example 1');