Class DropDownChoice<T>

    • Constructor Detail

      • DropDownChoice

        public DropDownChoice​(String id)
        Constructor.
        Parameters:
        id - See Component
      • DropDownChoice

        public DropDownChoice​(String id,
                              List<? extends T> choices)
        Constructor.
        Parameters:
        id - See Component
        choices - The collection of choices in the dropdown
      • DropDownChoice

        public DropDownChoice​(String id,
                              List<? extends T> choices,
                              IChoiceRenderer<? super T> renderer)
        Constructor.
        Parameters:
        id - See Component
        renderer - The rendering engine
        choices - The collection of choices in the dropdown
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<T> model,
                              List<? extends T> choices)
        Constructor.
        Parameters:
        id - See Component
        model - See Component
        choices - The collection of choices in the dropdown
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<T> model,
                              List<? extends T> choices,
                              IChoiceRenderer<? super T> renderer)
        Constructor.
        Parameters:
        id - See Component
        model - See Component
        choices - The drop down choices
        renderer - The rendering engine
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<? extends List<? extends T>> choices)
        Constructor.
        Parameters:
        id - See Component
        choices - The collection of choices in the dropdown
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<T> model,
                              IModel<? extends List<? extends T>> choices)
        Constructor.
        Parameters:
        id - See Component
        model - See Component
        choices - The drop down choices
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<? extends List<? extends T>> choices,
                              IChoiceRenderer<? super T> renderer)
        Constructor.
        Parameters:
        id - See Component
        choices - The drop down choices
        renderer - The rendering engine
      • DropDownChoice

        public DropDownChoice​(String id,
                              IModel<T> model,
                              IModel<? extends List<? extends T>> choices,
                              IChoiceRenderer<? super T> renderer)
        Constructor.
        Parameters:
        id - See Component
        model - See Component
        choices - The drop down choices
        renderer - The rendering engine