Class InputDialog<T extends Serializable>

    • Constructor Detail

      • InputDialog

        public InputDialog​(String id,
                           String title,
                           String label)
        Constructor supplying a new default model.
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        label - text that will be displayed in front of the text field.
      • InputDialog

        public InputDialog​(String id,
                           IModel<String> title,
                           IModel<String> label)
        Constructor supplying a new default model.
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        label - text that will be displayed in front of the text field.
      • InputDialog

        public InputDialog​(String id,
                           String title,
                           String label,
                           IModel<T> model)
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        label - text that will be displayed in front of the text field.
        model - the model to be used
      • InputDialog

        public InputDialog​(String id,
                           IModel<String> title,
                           IModel<String> label,
                           IModel<T> model)
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        label - text that will be displayed in front of the text field.
        model - the model to be used