DynamicModels
- 03 Nov 2020
- 1 Minute to read
- Contributors
- Print
- DarkLight
DynamicModels
- Updated on 03 Nov 2020
- 1 Minute to read
- Contributors
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback!
net.comactivity.core.datamodel.DynamicModels
setPmlFieldAttribute
Method only supported a subset of attributes. Instead, get the PML Field and use available setters.
Previously supported attributes were displayLength
, promptable
, prompttask
, promptentrypoint
, promptentrytab
, customFieldStyle
, and customLabelStyle
.
Removed
setPmlFieldAttribute(String segmentId, String columnName, String tableName, String metaId, String attribute, String value)
Replace With
getPmlField(String segmentId, String columnName, String tableName, String metaId).setDisplayLength(int displayLength)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setPromptable(boolean promptable)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setPrompttask(String prompttask)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setPromptentrypoint(String promptentrypoint)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setPromptentrytab(String promptentrytab)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setCustomFieldStyle(String customFieldStyle)
getPmlField(String segmentId, String columnName, String tableName, String metaId).setCustomLabelStyle(String customLabelStyle)
Was this article helpful?