Guillaume Bonnaire
Guillaume Bonnaire
Hi, For tab selection, you need add tabIndex attribute ```HTML ``` and this script for enter in jspreadsheet when is focused : ```javascript $('#grid').focusin(function() { if(!jspreadsheet.current) { jspreadsheet.current = spreadsheet;...
Hi, You can make otherwise than tabIndex. Just some ideas : - Add input before div JSS with style `visibility: hidden; height: 0px; width: 0px;`, and add listener when is...
Hi, You can use this events : `onbeforepaste` and `oncopy` ```javascript var MyTable = jspreadsheet(DOMElement, { onbeforepaste: function(el, data, x, y) { // Todo something jexcel.current.setValue("B1", parseInt(jexcel.current.getValue("B1"))-1); }, oncopy: function(el,...
On jspreadsheet CE you can't specify custom toolbar on html editor
Hi Do you have try with this options of JExcel ```javascript myTable = jexcel(DOMElement, { ... tableOverflow: true, tableWidth: "100%", tableHeight:"100%", ... }; ```
Could you create JS fiddle with this behavior ? And indicate your browser ? please on https://bossanova.uk/jspreadsheet/v4/examples/table-overflow it work fine (Chome navigator)
tableOverflow change style et some other behavior. On pro version, is work much better with another system. Try it.
Hi, I think you can send a pull request 😊 Thanks