
// Table row select callback
function editableTableRowSelected(marked_row, marked_all) {
    document.workflowform.editrows.value = marked_all.join(',');
    //alert('marked IDs: ' + marked_all + '\njust marked row: ' + marked_one);
}

function editTemplate(marked_row, marked_key) {
    // marked_all must contain the name of the workflow to start
    // form must define a hidden input field 'selected_row' that holds the
    // row data
    // document.workflowform.action = marked_key;
    document.workflowform.selected_row.value = marked_row.join(
    ',');
    }

