Examples
Custom column type
A very powerful feature on jspreadsheet is give developers the hability to create their own custom columns. The following example shows how to integrate a thirdy party clock plugin as a custom column on Jspreadsheet Pro v7+.
A time custom column based on the clockpicker plugin by weareoutman.
Source code
<html> <script src="https://jspreadsheet.com/v7/jspreadsheet.js"></script> <script src="https://jsuites.net/v4/jsuites.js"></script> <link rel="stylesheet" href="https://jspreadsheet.com/v7/jspreadsheet.css" type="text/css" /> <link rel="stylesheet" href="https://jsuites.net/v4/jsuites.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="http://weareoutman.github.io/clockpicker/dist/jquery-clockpicker.min.css" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="http://weareoutman.github.io/clockpicker/dist/jquery-clockpicker.min.js"></script> <div id="custom"></div> <script> var clockEditor = function() { var methods = {}; methods.createCell = function(cell, value, x, y, instance, options) { cell.innerHTML = value; } methods.updateCell = function(cell, value, x, y, instance, options) { if (cell) { cell.innerHTML = value; } } methods.openEditor = function(cell, value, x, y, instance, options) { // Create input from the helpers var editor = jspreadsheet.helpers.createEditor('input', cell); editor.value = value; // Instance of the clock picker $(editor).clockpicker({ afterHide:function() { setTimeout(function() { // To avoid double call if (cell.children[0]) { instance.closeEditor(cell, true); } }); } }); editor.focus(); } methods.closeEditor = function(cell, save) { if (save) { cell.innerHTML = cell.children[0].value; } else { cell.innerHTML = ''; } return cell.innerHTML; } return methods; }(); var data = [ ['PHP', '14:00'], ['Javascript', '16:30'], ]; jspreadsheet(document.getElementById('custom'), { data: data, columns: [ { type: 'text', title: 'Course Title', width: '300px' }, { type: clockEditor, title: 'Time', width: '200px' }, ], license: 'M2RiZjdmY2MyMmIzM2JlMGQxZjZkODg5YzcxNjIxN2IxZWUzZjI3MDJlNTAyNDhkZTk1YzM1NTRiN2NkN2UyOTA5NzRmOWVkOWNlYmJkMmVkMjI4MzE0MzU1YTViZWQ2OGMwNDlkYmRkOTc5ZGYzOGExN2YwZGI2ZDYyMTU5YmYsZXlKdVlXMWxJam9pY0dGMWJDNW9iMlJsYkNJc0ltUmhkR1VpT2pFMk5EWXdPVEk0TURBc0ltUnZiV0ZwYmlJNld5SmpjMkl1WVhCd0lpd2lhbk5tYVdSa2JHVXVibVYwSWl3aWQyVmlMbUZ3Y0NJc0ltcHpjSEpsWVdSemFHVmxkQzVqYjIwaUxDSnFaWGhqWld3dWJtVjBJaXdpYkc5allXeG9iM04wSWwwc0luQnNZVzRpT2lJekluMD0=', }); </script> </html>