i’ve got an object “topic” with multilingual properties and i use a formula field in my object event" to retrieve a list with topics.
object “event”:
component {
property name="title" type="string" dbtype="varchar" required=false maxLength="200" multilingual=true;
property name="topicList" formula="group_concat(distinct ${prefix}topics.topictitle order by ${prefix}topics.sortorder asc)";
}
object “topic”:
component {
property name="topictitle" type="string" dbtype="varchar" required=false maxLength="200" control="textinput" multilingual=true;
property name="eventId" relationship="many-to-many" relatedTo="event";
}
if i switch languages in my frontend i get all records in the current language - except the records retrieved by the formular field.
is there a solution for that behaviour?