Hi,
I try to get the values of a choices field but it's not working.
In my contact table, the user has a field called crc9d_scope and it's a multi-select type.
I tried to get the values using liquid in custom javascript form option by doing thess syntaxes but no results :
var scope = '{{ user["crc9d.scope"].label}}';
var scope = '{{ user.crc9d.scope.value}}';
var scope = '{{ user.crc9d.scope}}';
var scope = '{{ user["crc9d.scope"].value}}';
the outputs are either nothing or 'System.Collections.Generic.List`1[Adxstudio.Xrm.Web.Mvc.Liquid.OptionSetValueDrop]'
My goal is to get the values from the user connected and set the field value in my form with these values.
Thanks in advance for any suggestions