-
I'm new to Observable Framework and a relative novice in JavaScript, so I'm sure that someone more advanced would be able to extract an answer to this problem from some other answers. But I'm stuck, and would really appreciate some help. I have an Here's the code I have: const authorList = [];
const authorTable = nodegoatTables.author_table;
for (let author in authorTable) {
const authorSet = [authorTable[author].author_name, authorTable[author].obj_id];
authorList.push(authorSet);
}
const authorPicker = Inputs.select(new Map(authorList), {label: "Author:", sort: true});
const authorID = view(authorPicker); When I use Many thanks in advance!!! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Can you make sure you're not trying to use the value in the same cell where you're declaring the view? |
Beta Was this translation helpful? Give feedback.
Can you make sure you're not trying to use the value in the same cell where you're declaring the view?