Interface BaseModal.WindowClosedCallback
- 
- All Superinterfaces:
 IClusterable,Serializable
- Enclosing class:
 - BaseModal<T extends Serializable>
 
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public static interface BaseModal.WindowClosedCallback extends IClusterable
Callback called after the window has been closed. If no callback instance is specified usingBaseModal.setWindowClosedCallback(BaseModal.WindowClosedCallback), no ajax request will be fired. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonClose(AjaxRequestTarget target)Called after the window has been closed. 
 - 
 
- 
- 
Method Detail
- 
onClose
void onClose(AjaxRequestTarget target)
Called after the window has been closed.- Parameters:
 target-AjaxRequestTargetinstance bound with the ajax request.
 
 - 
 
 -