public interface ILazyHideablePanel extends IHideablePanel
Modifier and Type | Method and Description |
---|---|
Collection<String> |
getSuppressInputs()
Collection of
String control ids on which to disallow update processing
while handling asynchorously request. |
boolean |
isLazy()
True if panel loads content asynchronously on demand.
|
boolean |
isRefreshOnShow()
True to refresh content asynchronously every time panel is toggled visible.
|
boolean |
isTwoPass()
True if panel content is rendered asynchronously, even if initially visible.
|
void |
setLazy(boolean lazy)
True if panel loads content asynchronously on demand.
|
void |
setRefreshOnShow(boolean refreshOnShow)
True to refresh content asynchronously every time panel is toggled visible.
|
void |
setSuppressInputs(Collection<String> suppressInputs)
Collection of
String control ids on which to disallow update processing
while handling asynchorously request. |
void |
setTwoPass(boolean twoPass)
True if panel content is rendered asynchronously, even if initially visible.
|
isVisible, setVisible
boolean isLazy()
void setLazy(boolean lazy)
boolean isRefreshOnShow()
void setRefreshOnShow(boolean refreshOnShow)
boolean isTwoPass()
void setTwoPass(boolean twoPass)
Collection<String> getSuppressInputs()
String
control ids on which to disallow update processing
while handling asynchorously request.
By default, all controls are allowed.void setSuppressInputs(Collection<String> suppressInputs)
String
control ids on which to disallow update processing
while handling asynchorously request.
By default, all controls are allowed.