What's a good FOSS alternative to this for non-commercial projects? I'd like to have a spreadsheet on my site for personal use.
Show HN: Datagridxl2.js – Fast Excel-like data table library
41–50 of 108 posts
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#42Looks interesting. I've just been looking at a couple of alternatives to this. We're adding a CSV import feature for our store finder, and the idea is to provide a spreadsheet-like interface where you can just copy and paste your location data instead of uploading a CSV where you need to deal with different delimiters and getting the column orders right etc.
[0]: https://github.com/6pac/SlickGrid/wiki/Examples
[1]: http://6pac.github.io/SlickGrid/examples/example-spreadsheet...
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#43How does it compare with https://grid.glideapps.com/ ?
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#44Looks interesting. I've just been looking at a couple of alternatives to this. We're adding a CSV import feature for our store finder, and the idea is to provide a spreadsheet-like interface where you can just copy and paste your location data instead of uploading a CSV where you need to deal with different delimiters and getting the column orders right etc.
You might be better off with something like https://csvbox.io/
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#45Looks interesting. I've just been looking at a couple of alternatives to this. We're adding a CSV import feature for our store finder, and the idea is to provide a spreadsheet-like interface where you can just copy and paste your location data instead of uploading a CSV where you need to deal with different delimiters and getting the column orders right etc.
If your up for jQuery-ui see SlickGrid examples[0] especially "Spreadsheet: features of the previous example but using a DataView"[1]. [0]: https://github.com/6pac/SlickGrid/wiki/Examples [1]: http://6pac.github.io/SlickGrid/examples/example-spreadsheet...
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#46Earlier quoted context omitted.
Looks quite similar to me. Both are using canvas (combined with off screen rendering?) under the covers which seems to be key to achieving this level of performance.
No reason to sacrifice accessibility and styling in the name of performance: https://github.com/jpmorganchase/regular-table
Disclosure: I am the primary developer of Glide Data Grid.
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#47Accessibility is a strong gating factor for some (including me). I don't see it in the docs. The whole thing seems to be missing any ARIA (see https://www.w3.org/TR/wai-aria-practices/examples/grid/dataG... ) Let me know if you want help.
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#48The performance here is amazing. Well done! I'm desperately searching for a way to replace old Handsontable (before they closed source), but the license here for DataGrid XL makes it impossible to easily bring into a large FOSS project. Some ideas for licensing: dual license MIT and commercial. Feed advanced features and support into the commercial while keeping the MIT version fast, performant, extendable.
I think it was handsontable I burned myself on: got client to sponsor/pay for support for a nice open source tool and shortly after they went closed source. Same with caddy, except that time it was my money. Some times I wonder if I should avoid giving money to open source projects because it seems to trigger the idea that one can make a whole lot of more money by selling out.
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#49Been using AgGrid but looking for a replacement. I tried to load a CSV of 100k items here and got a "RangeError: Maximum call stack size exceeded." https://www.datagridxl.com/demos/import-csv-data
However, I will add this to our list of issues, see where the error really comes from and where I can improve it (https://github.com/DataGridXL/DataGridXL2/issues/31). For now, I would say 10,000 records max to be sure.
Re: Show HN: Datagridxl2.js – Fast Excel-like data table library
#50I'm impressed by the lack of dependencies and single-file download. One of my use-cases is for offline use, and not via a web app installation -- only assets in an ordinary filesystem directory. Mega-components in single js files are a good step towards that.