FieldChangeObject
net.comactivity.core.dynamic.change.FieldChangeObject
getSelectTextOnFocusOverride
Method was renamed.
Removed
getSelectTextOnFocusOverride()
Replace With
getTextAreaSelectTextOnFocus()
setSelectTextOnFocusOverride
Method was renamed.
Removed
setSelectTextOnFocusOverride(selectTextOnFocusOverride)
Replace With
setTextAreaSelectTextOnFocus(selectTextOnFocusOverride)
show
The method was used in combination with the hide
method. It has now been replaced with show(String type)
. The reason is that if a field is initially set to hidden, show()
would reset to that visibility since it cannot know which visibility it should render as, input or output.
Removed
show()
Replace With
show(FieldChangeObject.INPUT)
or
show(FieldChangeObject.OUTPUT)