Interface DomTableEditorValue

All Superinterfaces:
EditorValue<Table>

@Deprecated public interface DomTableEditorValue extends EditorValue<Table>
Deprecated.
since 5.2.21 - use FormField instead
The DomTableEditorValue interface represents the FirstSpirit input component CMS_INPUT_DOMTABLE
Since:
2.3.17
  • Field Details

  • Method Details

    • getRows

      int getRows(Language language)
      Deprecated.
      Provides the number of rows for the given language.
      Parameters:
      language - The language for that the number of rows should be submitted.
      Since:
      3.0.95
    • getColumns

      int getColumns(Language language)
      Deprecated.
      Provides the number of columns for the given language.
      Parameters:
      language - The language for that the number of columns should be submitted.
      Since:
      3.0.95
    • addRow

      void addRow(Language language, int afterRow)
      Deprecated.
      Adds a row for the given language after the defined row index.
      Parameters:
      language - The language for which the row should be added.
      afterRow - The row index after which the row should be added.
      Since:
      3.0.95
    • deleteRow

      void deleteRow(Language language, int row)
      Deprecated.
      Deletes the row for the given language and the defined index.
      Parameters:
      language - The language for which the row should be deleted.
      row - The row's index that should be deleted.
      Since:
      3.0.95
    • addColumn

      void addColumn(Language language, int afterColumn)
      Deprecated.
      Adds a column for the given language after the defined column index.
      Parameters:
      language - The language for which the column should be added.
      afterColumn - The column index after which the column should be added.
      Since:
      3.0.95
    • deleteColumn

      void deleteColumn(Language language, int column)
      Deprecated.
      Deletes the column for the given language and the defined index.
      Parameters:
      language - The language for which the column should be deleted.
      column - The column's index that should be deleted.
      Since:
      3.0.95
    • getCell

      @Nullable @Nullable TableCell getCell(Language language, int row, int column)
      Deprecated.
      Gets the cell of this dom table with the given row & col index or null if no cell exists with these indices.
      Parameters:
      language - the language to get the cell value for
      row - the row index
      column - the col index
      Returns:
      TableCell or null if no cell exists for given indices
      Since:
      4.0.17
    • getForm

      de.espirit.firstspirit.access.store.templatestore.gom.GomDomTable getForm()
      Deprecated.
      Get the form definition.
      Specified by:
      getForm in interface EditorValue<Table>
      Returns:
      The form definition.
      Since:
      4.0.17
    • getSection

      Section getSection(Language language, int row, int column)
      Deprecated.
      Get a cell defined by language, row, and column as Section object.
      Parameters:
      language - The language to look up.
      row - The row of the cell.
      column - The column of the cell.
      Returns:
      The matching section or null.
      Since:
      4.0.17
    • getAllowedLinkTemplates

      @NotNull @NotNull List<LinkTemplate> getAllowedLinkTemplates()
      Deprecated.
      Get a list of allowed link types.
      Returns:
      The list of allowed link types.
      Since:
      4.2.8