Package | Description |
---|---|
com.googlecode.wicket.jquery.ui.widget.dialog | |
com.googlecode.wicket.jquery.ui.widget.wizard |
Modifier and Type | Method and Description |
---|---|
DialogButton |
AbstractDialog.findButton(String name)
Finds a
DialogButton - identified by its name - within the list of buttons returned by AbstractDialog.getButtons() |
DialogButton |
ButtonAjaxBehavior.getButton()
Gets the
DialogButton |
DialogButton |
ButtonAjaxBehavior.ClickEvent.getButton()
Get the button that has been attached to this event object
|
protected DialogButton |
InputDialog.getSubmitButton() |
protected abstract DialogButton |
AbstractFormDialog.getSubmitButton()
Gets the button that is in charge to submit the form.
It should be in the list of buttons returned by AbstractDialog.getButtons() |
Modifier and Type | Method and Description |
---|---|
protected abstract List<DialogButton> |
DialogBehavior.getButtons()
Gets the dialog's buttons.
|
protected List<DialogButton> |
InputDialog.getButtons() |
protected List<DialogButton> |
MessageFormDialog.getButtons() |
protected List<DialogButton> |
MessageDialog.getButtons() |
protected List<DialogButton> |
AbstractDialog.getButtons()
Gets the dialog's buttons.
It is allowed to return a predefined list (ie: DialogButtons#OK_CANCEL#toList()) as long as the buttons state (enable and/or visible) are not modified Warning: It is not legal to create the buttons to be returned in this method. |
List<DialogButton> |
DialogButtons.toList()
Gets the list of buttons
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractDialog.close(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button)
Closes the dialogs in ajax.
|
protected org.apache.wicket.markup.html.form.Form<?> |
AbstractFormDialog.getForm(DialogButton button)
Gets the form associated to the button.
It means that it will return the form if the button is the submit button and null otherwise. |
protected abstract ButtonAjaxBehavior |
DialogBehavior.newButtonAjaxBehavior(com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware source,
DialogButton button)
Gets a new
ButtonAjaxBehavior that will be called by the corresponding DialogButton . |
protected ButtonAjaxBehavior |
AbstractFormDialog.newButtonAjaxBehavior(com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware source,
DialogButton button)
Gets the
ButtonAjaxPostBehavior associated to the specified button. |
protected ButtonAjaxBehavior |
AbstractDialog.newButtonAjaxBehavior(com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware source,
DialogButton button)
Gets a new
ButtonAjaxBehavior that will be called by the corresponding DialogButton .This method may be overridden to provide additional behaviors |
void |
DialogAdapter.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button) |
void |
IDialogListener.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button)
Triggered when a button is clicked.
|
void |
DialogListenerWrapper.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button) |
void |
AbstractDialog.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button)
Triggered when a button is clicked
This method may be overridden to handle button behaviors, but the dialog will not been closed until super.onClick(event) or AbstractDialog.close(AjaxRequestTarget, DialogButton) is called. |
void |
DialogAdapter.onClose(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button) |
void |
IDialogListener.onClose(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button)
Triggered when the dialog closes.
|
void |
DialogListenerWrapper.onClose(org.apache.wicket.ajax.AjaxRequestTarget handler,
DialogButton button) |
void |
MessageFormDialog.onClose(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button) |
void |
AbstractFormDialog.onClose(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button) |
Constructor and Description |
---|
ButtonAjaxBehavior(com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware source,
DialogButton button)
Constructor
|
ButtonAjaxPostBehavior(com.googlecode.wicket.jquery.core.ajax.IJQueryAjaxAware source,
DialogButton button,
org.apache.wicket.markup.html.form.Form<?> form)
Constructor
|
ClickEvent(DialogButton button) |
Constructor and Description |
---|
MessageDialog(String id,
org.apache.wicket.model.IModel<String> title,
org.apache.wicket.model.IModel<String> message,
List<DialogButton> buttons)
Constructor.
|
MessageDialog(String id,
org.apache.wicket.model.IModel<String> title,
org.apache.wicket.model.IModel<String> message,
List<DialogButton> buttons,
DialogIcon icon)
Constructor.
|
MessageDialog(String id,
String title,
String message,
List<DialogButton> buttons)
Constructor.
|
MessageDialog(String id,
String title,
String message,
List<DialogButton> buttons,
DialogIcon icon)
Constructor.
|
MessageFormDialog(String id,
org.apache.wicket.model.IModel<String> title,
org.apache.wicket.model.IModel<String> message,
List<DialogButton> buttons)
Constructor.
|
MessageFormDialog(String id,
org.apache.wicket.model.IModel<String> title,
org.apache.wicket.model.IModel<String> message,
List<DialogButton> buttons,
DialogIcon icon)
Constructor.
|
MessageFormDialog(String id,
String title,
String message,
List<DialogButton> buttons)
Constructor.
|
MessageFormDialog(String id,
String title,
String message,
List<DialogButton> buttons,
DialogIcon icon)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
protected DialogButton |
AbstractWizard.getCancelButton()
Gets the button that is in charge to cancel to wizard.
|
protected DialogButton |
AbstractWizard.getSubmitButton() |
Modifier and Type | Method and Description |
---|---|
protected List<DialogButton> |
AbstractWizard.getButtons() |
Modifier and Type | Method and Description |
---|---|
protected org.apache.wicket.markup.html.form.Form<?> |
AbstractWizard.getForm(DialogButton button)
Returns the form associated to the button.
It means that it will return the form if the supplied button is considered as a form submitter and null otherwise. |
void |
AbstractWizard.onClick(org.apache.wicket.ajax.AjaxRequestTarget target,
DialogButton button)
Triggered when a wizard button is clicked.
|
Copyright © 2016 7thWeb. All rights reserved.