I have this javascript command, which works fine:
return top.GO.tasks.showTaskDialog({tasklist_id:907});
However I would like to insert a variable called id instead of "907".
I have tried
return top.GO.tasks.showTaskDialog({tasklist_id: + id + });
but that does not work..
Thanks for all help!
return top.GO.tasks.showTaskDialog({tasklist_id: id });no need the +s because its not a string