Guillaume Bonnaire
Guillaume Bonnaire
Hi Each nested is tagged by class .jexcel_nested. With that you can hide/show with this function ```javascript // For hide document.querySelectorAll(".jexcel_nested").forEach(function(item) { item.style.display = "none"; }); ``` ```javascript // For...
Hi, Do you import on load or after loading spreadsheet ?
Hi 😊 for pro support, you can open issue on https://github.com/jspreadsheet/pro/issues For your questions : to dispatch event `onsave`, you need define `persistence` or `server` property with url of your...
Could you make a Pull request on this git ?
Hi, Can you make a PR ? or if you want you can use pro version with the full system on persistence
I have propose a fix for that, thanks
Hi, Could you make a PR? Thanks
Pull request on Git : https://github.com/jspreadsheet/ce/pulls
https://opensource.com/article/19/7/create-pull-request-github In summary, if you want to contribute to the project, the simplest way is to: 1. Fork it 2. Clone it to your local system 3. Make a new...
Hello, In fact, you have cell linked only when it's used on formula direct reference (A1, A2:B3,etc). But if you use référence indirect like (COLUMN(1), VALUE(1,1), ...) is not linked....