Class AbstractDialog<T extends Serializable>

    • Constructor Detail

      • AbstractDialog

        public AbstractDialog​(String id,
                              String title)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
      • AbstractDialog

        public AbstractDialog​(String id,
                              IModel<String> title)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
      • AbstractDialog

        public AbstractDialog​(String id,
                              String title,
                              IModel<T> model)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        model - the model to be used in the dialog.
      • AbstractDialog

        public AbstractDialog​(String id,
                              IModel<String> title,
                              IModel<T> model)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        model - the model to be used in the dialog.
      • AbstractDialog

        public AbstractDialog​(String id,
                              String title,
                              boolean modal)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        modal - indicates whether the dialog is modal
      • AbstractDialog

        public AbstractDialog​(String id,
                              IModel<String> title,
                              boolean modal)
        Constructor
        Parameters:
        id - the markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        modal - indicates whether the dialog is modal
      • AbstractDialog

        public AbstractDialog​(String id,
                              String title,
                              IModel<T> model,
                              boolean modal)
        Constructor
        Parameters:
        id - markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        modal - indicates whether the dialog is modal
        model - the model to be used in the dialog
      • AbstractDialog

        public AbstractDialog​(String id,
                              IModel<String> title,
                              IModel<T> model,
                              boolean modal)
        Constructor
        Parameters:
        id - markupId, an html div suffice to host a dialog.
        title - the title of the dialog
        modal - indicates whether the dialog is modal
        model - the model to be used in the dialog