Skip to content

Instantly share code, notes, and snippets.

@iaindooley
Created August 19, 2020 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/4d80aa60975b8414843be5d662a1faca to your computer and use it in GitHub Desktop.
Save iaindooley/4d80aa60975b8414843be5d662a1faca to your computer and use it in GitHub Desktop.
Update corresponding card
function processEdit(e)
{
var rowdata = getRowDataFromEvent(e);
new Card({link: rowdata[0]})
.setName(rowdata[1])
.setDescription(rowdata[2]);
}
function getRowDataFromEvent(e)
{
//IMPLEMENT ME!
return data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment