Gurus,
I can CRUD on my module, how can I add a Descriptive Fields to get the proper list in my RecordActionTable
Regards
Gurus,
I can CRUD on my module, how can I add a Descriptive Fields to get the proper list in my RecordActionTable
Regards
Use SFieldFlags.SDESCRIPTIVE
for the settings you want to show up there.
@JvmField
val DEVICE_NAME: StringField =
StringField(META, "DeviceName", SFieldFlags.SMANDATORY, SFieldFlags.SDESCRIPTIVE).apply {
setUnique(true)
}
(squint and pretend I copy/pasted a Java example)
Thanks for the prompt reply, the community here is amazing!