Class AjaxDropDownChoice<T>

    • Constructor Detail

      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id)
        Constructor
        Parameters:
        id - the markup id
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  List<? extends T> choices)
        Constructor
        Parameters:
        id - the markup id
        choices - the list of choices
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  List<? extends T> choices,
                                  IChoiceRenderer<? super T> renderer)
        Constructor
        Parameters:
        id - the markup id
        choices - the list of choices
        renderer - the rendering engine
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<T> model,
                                  List<? extends T> choices)
        Constructor
        Parameters:
        id - the markup id
        model - the IModel
        choices - the list of choices
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<T> model,
                                  List<? extends T> choices,
                                  IChoiceRenderer<? super T> renderer)
        Constructor
        Parameters:
        id - the markup id
        model - the IModel
        choices - the list of choices
        renderer - the rendering engine
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<? extends List<? extends T>> choices)
        Constructor
        Parameters:
        id - the markup id
        choices - the list of choices
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<T> model,
                                  IModel<? extends List<? extends T>> choices)
        Constructor
        Parameters:
        id - the markup id
        model - the IModel
        choices - the list of choices
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<? extends List<? extends T>> choices,
                                  IChoiceRenderer<? super T> renderer)
        Constructor
        Parameters:
        id - the markup id
        choices - the list of choices
        renderer - the rendering engine
      • AjaxDropDownChoice

        public AjaxDropDownChoice​(String id,
                                  IModel<T> model,
                                  IModel<? extends List<? extends T>> choices,
                                  IChoiceRenderer<? super T> renderer)
        Constructor
        Parameters:
        id - the markup id
        model - the IModel
        choices - the list of choices
        renderer - the rendering engine
    • Method Detail

      • isSelectionChangedEventEnabled

        public boolean isSelectionChangedEventEnabled()
        Specified by:
        isSelectionChangedEventEnabled in interface com.googlecode.wicket.jquery.core.event.ISelectionChangedListener
      • onSelectionChanged

        public void onSelectionChanged​(AjaxRequestTarget target)
        Specified by:
        onSelectionChanged in interface com.googlecode.wicket.jquery.core.event.ISelectionChangedListener
      • newWidgetBehavior

        public com.googlecode.wicket.jquery.core.JQueryBehavior newWidgetBehavior​(String selector)
        Specified by:
        newWidgetBehavior in interface com.googlecode.wicket.jquery.core.IJQueryWidget
        Overrides:
        newWidgetBehavior in class DropDownChoice<T>