Class FragmentFormDialog<T extends Serializable>

    • Constructor Detail

      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  String title)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  IModel<String> title)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  String title,
                                  IModel<T> model)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        model - the dialog's model
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  IModel<String> title,
                                  IModel<T> model)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        model - the dialog's model
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  String title,
                                  boolean modal)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        modal - indicates whether the dialog is modal
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  IModel<String> title,
                                  boolean modal)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        modal - indicates whether the dialog is modal
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  String title,
                                  IModel<T> model,
                                  boolean modal)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        model - the dialog's model
        modal - indicates whether the dialog is modal
      • FragmentFormDialog

        public FragmentFormDialog​(String id,
                                  IModel<String> title,
                                  IModel<T> model,
                                  boolean modal)
        Constructor
        Parameters:
        id - the markup id
        title - the dialog's title
        model - the dialog's model
        modal - indicates whether the dialog is modal
    • Method Detail

      • newFragment

        protected abstract Fragment newFragment​(String id)
        Factory method that returns a new Fragment
        Parameters:
        id - the component id to be used for the new fragment. ie: new Fragment(id, "my-fragment", MyPage.this);
        Returns:
        the Fragment