|
<script>
var doneData = [];
document.getElementById("Close").addEventListener('click',
function () {
if (document.getElementById('Kanban')) {
var kanbanObj = document.getElementById('Kanban').ej2_instances[0];
// Getting the Done Column data and assigning it to the variable called doneData
doneData = kanbanObj.getColumnData("Done");
// Printing the Done column data in browser console window.
console.log(doneData);
}
});
</script> |