Quote from
luishp on May 23, 2025, 4:28 pm
@phil78 neoTableEditColumnAsSelect expects the data in the "Options" parameter as a string, where each option is separated by a newline character (\n). If [Joueur] is an array, you can't pass it directly.
This is incorrect:
neoTableEditColumnAsSelect "Container2" "1" "inline" "" "" "[Joueur]" "" true ""
Instead, convert the array to the correct format.
This should work:
BeginJS
$App.JoueurStr = $App.Joueur.join('\n');
EndJS
neoTableEditColumnAsSelect "Container2" "1" "inline" "" "" "[JoueurStr]" "" true ""
@phil78 neoTableEditColumnAsSelect expects the data in the "Options" parameter as a string, where each option is separated by a newline character (\n). If [Joueur] is an array, you can't pass it directly.
This is incorrect:
neoTableEditColumnAsSelect "Container2" "1" "inline" "" "" "[Joueur]" "" true ""
Instead, convert the array to the correct format.
This should work:
BeginJS
$App.JoueurStr = $App.Joueur.join('\n');
EndJS
neoTableEditColumnAsSelect "Container2" "1" "inline" "" "" "[JoueurStr]" "" true ""
Phil78 has reacted to this post.