lamoedo
January 29, 2018, 4:28pm
#1
Question probably naive. I can not call custom fields when the reference starts with numeric.
Example : I can use this kind of field data.c8f1d35bd11594330b2ec4b70038bf2d8xxxx but not this one data.93c8f1d35bd11594330b2ec4b70038bf2d88xxx
Any idea ?
1 Like
Jan
January 29, 2018, 7:14pm
#2
@lamoedo , it seems that your trying to access properties in javascript. For this particular use-case (numeric object properties) you can try using the bracket-notation:
i.e.: data[93c8âŚ] or data[â93c8âŚâ]
1 Like
lamoedo
January 30, 2018, 3:44pm
#3
Thanks, it works with the last version : data[â93c8âŚâ]
Ludovic
In PHP, you can referer a custom field, like this:
$person->{â16ad01a8dbfa8913753ac55c799476741da35b1fâ};
1 Like