123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- <!doctype html>
- <html>
- <head>
- <meta charset='utf-8'>
- <title>Handsontable - JavaScript data grid editor. Excel-like grid editing with HTML & JavaScript</title>
- <!--
- Loading Handsontable (full distribution that includes all dependencies apart from jQuery)
- -->
- <script data-jsfiddle="common" src="dist/handsontable.full.js"></script>
- <link data-jsfiddle="common" rel="stylesheet" media="screen" href="dist/handsontable.full.css">
- <!--
- Loading demo dependencies. They are used here only to enhance the examples on this page
- -->
- <link data-jsfiddle="common" rel="stylesheet" media="screen" href="demo/css/samples.css">
- <script src="demo/js/samples.js"></script>
- <script src="demo/js/highlight/highlight.pack.js"></script>
- <link rel="stylesheet" media="screen" href="demo/js/highlight/styles/github.css">
- <link rel="stylesheet" href="demo/css/font-awesome/css/font-awesome.min.css">
- <!--
- Facebook open graph. Don't copy this to your project :)
- -->
- <meta property="og:title" content="Handsontable - JavaScript grid editor">
- <meta property="og:description" content="Excel-like data grid with HTML & JavaScript">
- <meta property="og:url" content="http://handsontable.com/">
- <meta property="og:image" content="http://handsontable.com/demo/image/og-image.png">
- <meta property="og:image:type" content="image/png">
- <meta property="og:image:width" content="409">
- <meta property="og:image:height" content="164">
- <link rel="canonical" href="http://handsontable.com/">
- <!--
- Google Analytics for GitHub Page. Don't copy this to your project :)
- -->
- <script src="demo/js/ga.js"></script>
- <!--
- GitHub buttons. Don't copy this to your project :)
- -->
- <link rel="stylesheet" media="screen" href="demo/github-buttons/github-buttons.css">
- <script src="demo/github-buttons/github-buttons.js" async></script>
- </head>
- <body class="home">
- <div class="wrapper">
- <div class="wrapper-row">
- <div id="global-menu-clone">
- <h1><a href="index.html">Handsontable</a> <span class="ver"></span></h1>
- <!-- menu start -->
- <div id="global-menu">
- <ul>
- <li>
- <h3>Getting Started</h3>
- <ul>
- <li>
- <a href="demo/understanding_reference.html">Understand binding as reference</a>
- </li>
- <li>
- <a href="demo/datasources.html">Array, object, function data source</a>
- </li>
- <li>
- <a href="demo/ajax.html">Load & Save (Ajax)</a>
- </li>
- </ul>
- </li>
- <li>
- <h3>Appearance</h3>
- <ul>
- <li>
- <a href="demo/renderers.html">Cell renderers</a>
- </li>
- <li>
- <a href="demo/renderers_html.html">Custom HTML</a>
- </li>
- <li>
- <a href="demo/scroll.html">Scroll bars</a>
- </li>
- <li>
- <a href="demo/scroll_window.html"> └ Scroll bars (window)</a>
- </li>
- <li>
- <a href="demo/stretch.html">Column stretching</a>
- </li>
- <li>
- <a href="demo/stretch_window.html"> └ Column stretching (window)</a>
- </li>
- <li>
- <a href="demo/conditional.html">Conditional formatting</a>
- </li>
- <li>
- <a href="demo/prepopulate.html">Pre-populate new rows</a>
- </li>
- <li>
- <a href="demo/current.html">Highlight current row/col</a>
- </li>
- <li>
- <a href="demo/sorting.html">Column sorting</a>
- </li>
- <li>
- <a href="demo/column_resize.html">Column & row resize <sup>UPDATED</sup></a>
- </li>
- <li>
- <a href="demo/column_move.html">Column & row move</a>
- </li>
- <li>
- <a href="demo/fixed.html">Fixed rows/columns</a>
- </li>
- <li>
- <a href="demo/column_freeze.html">Column freeze <sup>NEW</sup></a>
- </li>
- <li>
- <a href="demo/pagination.html">Pagination</a>
- </li>
- <li>
- <a href="demo/merge_cells.html">Merge cells</a>
- </li>
- <li>
- <a href="demo/align_cell.html">Horizontal & vertical align</a>
- </li>
- <li>
- <a href="demo/custom_borders.html">Custom borders</a>
- </li>
- </ul>
- </li>
- <li>
- <h3>Cell types</h3>
- <ul>
- <li>
- <a href="demo/numeric.html">Numeric</a>
- </li>
- <li>
- <a href="demo/date.html">Date <sup>UPDATED</sup></a>
- </li>
- <li>
- <a href="demo/time.html">Time <sup>NEW</sup></a>
- </li>
- <li>
- <a href="demo/checkbox.html">Checkbox</a>
- </li>
- <li>
- <a href="demo/selectEditor.html">Select</a>
- </li>
- <li>
- <a href="demo/dropdown.html">Dropdown</a>
- </li>
- <li>
- <a href="demo/autocomplete.html">Autocomplete</a>
- </li>
- <li>
- <a href="demo/password.html">Password</a>
- </li>
- <li>
- <a href="demo/handsontable.html">Handsontable</a>
- </li>
- </ul>
- </li>
- <li>
- <h3>Editing</h3>
- <ul>
- <li>
- <a href="demo/validation.html">Validation</a>
- </li>
- <li>
- <a href="demo/dragdown.html">Drag-down</a>
- </li>
- <li>
- <a href="demo/buttons.html">Custom buttons</a>
- </li>
- <li>
- <a href="demo/contextmenu.html">Context menu</a>
- </li>
- <li>
- <a href="demo/contextmenucopypaste.html"> └ Copy/Paste in Context menu</a>
- </li>
- <li>
- <a href="demo/dropdownmenu.html">Dropdown menu <sup>NEW (PRO)</sup></a>
- </li>
- <li>
- <a href="demo/comments.html">Comments <sup>BETA</sup></a>
- </li>
- <li>
- <a href="demo/readonly.html">Read-only cells</a>
- </li>
- <li>
- <a href="demo/search.html">Search of values</a>
- </li>
- </ul>
- </li>
- <li>
- <h3>Integration</h3>
- <ul>
- <li>
- <a href="demo/options.html">Options</a>
- </li>
- <li>
- <a href="demo/callbacks.html">Callbacks</a>
- </li>
- <li>
- <a href="demo/beforeKeyDown.html"> └ beforeKeyDown</a>
- </li>
- <li>
- <a href="demo/backbone.html">Backbone.js</a>
- </li>
- <li>
- <a href="demo/jquery.html">jQuery</a>
- </li>
- <li>
- <a href="demo/bootstrap.html">Twitter Bootstrap</a>
- </li>
- <li>
- <a href="demo/graphael.html">gRaphaël charts</a>
- </li>
- <li>
- <a href="demo/heatmaps.html">Chroma.js (Heatmaps)</a>
- </li>
- <li>
- <a href="https://github.com/handsontable/hot-table">hot-table (Polymer) <sup><i
- class="icon-external-link"></i></sup></a>
- </li>
- <li>
- <a href="https://github.com/handsontable/ngHandsontable">ngHandsontable (AngularJS) <sup><i
- class="icon-external-link"></i></sup></a>
- </li>
- </ul>
- </li>
- </ul>
- <ul>
- <li><a href="https://twitter.com/handsontable"><i class="icon-twitter"></i> Follow
- @handsontable</a></li>
- <li><a href="https://groups.google.com/forum/?fromgroups=#!forum/handsontable"><i
- class="icon-comment"></i> Discuss on Google Groups</a></li>
- </ul>
- </div>
- <!-- menu end -->
- </div>
- <div id="github-buttons">
- <span class="github-btn" id="githubWatch">
- <a class="gh-btn github-watchers" href="https://github.com/handsontable/handsontable">
- <span class="gh-ico"></span>
- <span class="gh-text">Star</span>
- </a>
- <a class="gh-count" href="https://github.com/handsontable/handsontable/stargazers"></a>
- </span>
- <span class="github-btn" id="githubFork">
- <a class="gh-btn github-forks" href="https://github.com/handsontable/handsontable">
- <span class="gh-ico"></span>
- <span class="gh-text">Fork</span>
- </a>
- <a class="gh-count" href="https://github.com/handsontable/handsontable/network"></a>
- </span>
- </div>
- <div id="container">
- <div class="columnLayout">
- <div class="rowLayout">
- <div class="descLayout">
- <div class="pad">
- <div class="warning" id="domainNotice">
- This page has been moved to
- <a href="http://handsontable.com/">http://handsontable.com/</a>. Please update your bookmarks.
- </div>
- </div>
- <div class="pad" data-jsfiddle="example">
- <p style="font-size: 20px"><strong>Handsontable</strong> is a minimalist Excel-like <span class="nobreak">data grid</span>
- editor
- for HTML & JavaScript</p>
- <div class="warning">
- This is Handsontable <a href="https://github.com/handsontable/handsontable/releases" class="ver"></a>, a
- release published on May 21st, 2015.
- <p>The most prominent changes are:</p>
- <ul>
- <li>modified fixed header/overlay structure - each overlay has its own hidden scrollbar - change was made to reduce the laggy overlay effect for IE and Safari,<br><br>
- <strong>Please note:</strong> In order to maintain the pre-0.14.0 scrollbar functionality, change the CSS <code>overflow</code> property of your Handsontable container from <code>scroll</code>
- or <code>auto</code> to <code>hidden</code>. Without performing this change, you might encounter problems with doubling scrollbars.</li><br>
- <li>Adding JSDoc to the project,</li>
- <li>Removal of jQuery UI datepicker - we switched to Pikaday + Moment.js, that makes us jQuery-free</li>
- </ul>
- Check out the <a href="https://github.com/handsontable/handsontable/releases/latest/">full release
- notes</a>. If you experience some rough edges, please report an
- <a href="https://github.com/handsontable/handsontable/issues">issue</a> or temporarily stick to
- version <a href="http://old.handsontable.com">0.10.5 <sup><i
- class="icon-external-link"></i></sup></a>.
- </div>
- <div id="example"></div>
- </div>
- </div>
- <div class="codeLayout">
- <div class="jsFiddle inline-buttons">
- <button class="show-source"></button>
- <button class="jsFiddleLink" data-runfiddle="example">Edit in jsFiddle</button>
- <button name="dump" data-dump="#example" data-instance="hot" title="Prints current data source to Firebug/Chrome Dev Tools">
- Dump data to console
- </button>
- </div>
- <script data-jsfiddle="example">
- var
- data = [
- ['', 'Maserati', 'Mazda', 'Mercedes', 'Mini', 'Mitsubishi'],
- ['2009', 0, 2941, 4303, 354, 5814],
- ['2010', 3, 2905, 2867, 412, 5284],
- ['2011', 4, 2517, 4822, 552, 6127],
- ['2012', 2, 2422, 5399, 776, 4151]
- ],
- container = document.getElementById('example'),
- hot;
- hot = new Handsontable(container, {
- data: data,
- minSpareRows: 1,
- colHeaders: true,
- contextMenu: true
- });
- </script>
- </div>
- </div>
- <script type="text/javascript">
- var showSourceElements = document.querySelectorAll('.show-source');
- for(var i = 0; i < showSourceElements.length ; i++) {
- var showElem = showSourceElements[i];
- showElem.addEventListener('mousedown', function (event) {
- event.preventDefault();
- if(showElem.className.indexOf('shown') > -1) {
- showElem.className = showElem.className.replace('shown', '');
- } else {
- showElem.className += ' shown';
- }
- var preJS = document.querySelectorAll('pre.javascript');
- for(var j = 0; j < preJS.length; j++) {
- if(preJS[j].style.display == '') {
- preJS[j].style.display = 'block';
- } else {
- preJS[j].style.display = '';
- }
- }
- var codeLay = document.querySelectorAll('.codeLayout');
- for(var j = 0; j < codeLay.length; j++) {
- if(codeLay[j].className.indexOf('codeLayoutExpanded') > -1) {
- codeLay[j].className = codeLay[j].className.replace('codeLayoutExpanded', '');
- } else {
- codeLay[j].className += ' codeLayoutExpanded';
- }
- }
- });
- }
- var verHolders = document.querySelectorAll('.ver');
- for(var i = 0; i < verHolders.length; i++) {
- var verText = document.createTextNode(hot.version);
- verHolders[i].appendChild(verText);
- }
- </script>
- <div class="footer-text">.
- </div>
- </div>
- </div>
- </div>
- </div>
- <div id="outside-links-wrapper">
- <!-- outside-links start -->
- <div id="outside-links">
- <div class="inline-buttons">
- <a class="button"
- href="https://github.com/handsontable/handsontable/releases">Releases</a>
- <a class="button button-light" href="https://github.com/handsontable/handsontable/wiki"><i
- class="icon-book"></i> Wiki</a>
- <a class="button button-secondary button-light"
- href="https://github.com/handsontable/handsontable/wiki/Options">Options</a>
- <a class="button button-secondary button-light"
- href="https://github.com/handsontable/handsontable/wiki/Methods">Methods</a>
- <a class="button button-secondary" href="https://github.com/handsontable/handsontable/wiki/Events">Events</a>
- <a class="button" href="https://github.com/handsontable/handsontable/wiki/FAQ">F.A.Q.</a>
- <a class="button button-github" href="https://github.com/handsontable/handsontable"><i
- class="icon-github"></i> Source</a>
- <a class="button button-github" href="https://github.com/handsontable/handsontable/issues"><i
- class="icon-bug"></i> Issues</a>
- </div>
- <div class="clear"></div>
- </div>
- <!-- outside-links end -->
- </div>
- </body>
- </html>
|