Good day,
First of all, a short preface that I have only recently started developing via FS API.
In a template there is a CMS_INPUT_LIST myFancyInputList with several ENTRY and I would like to retrieve the values of this InputList via FS API.
I could already figure out how to set the values?
formData.form.findEditor(“myFancyInputList”)
.let { it as OptionFactoryProvider }
.optionFactory.create(person.tenant)
.let { hashSetOf(it) }
.let { formData.get(null, “myFancyInputList”).set(it) }
But how do I get the already set values so that I can perform an update?
Many thanks in advance and best regards,
theexiile1305