Hello there,
I am having issues with the sc_field_init_off macro. I am storing the names of which fields a user wants to see in a db table and then trying to by user display their preferred fields. So…
$list2 = {field1}, {field2}, {field3}
sc_field_init_off($list2);
This won’t work. However this works…
sc_field_init_off({field1}, {field2}, {field3});
Any idea as to why this wouldn’t work or how I might do it different?
Thanks in advance.