DynamicModels
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)