Socket
Socket
Sign inDemoInstall

@handsontable/vue3

Package Overview
Dependencies
34
Maintainers
5
Versions
584
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @handsontable/vue3

Best Data Grid for Vue with Spreadsheet Look and Feel.


Version published
Weekly downloads
3.5K
decreased by-8.23%
Maintainers
5
Created
Weekly downloads
 

Changelog

Source

[14.4.0] - 2024-06-11

Added

  • Extended the manualRowResize plugin with a method to retrieve the row height value from the last manual adjustment attempt. #10941
  • Added an option to change the order of hook callbacks. #10970
  • Added new dataDotNotation option which, when set as false allows using object keys with dots. #10973

Changed

  • Improved editor behavior after dataset alterations. #10963
  • React: Synchronized the rollup version between the wrappers and updated the rollup plugin dependencies. #10962

Fixed

  • Fixed unwanted table re-rendering for oversized rows/columns. #10912
  • Fixed Ctrl/Cmd + Enter keyboard shortcut for comments. #10920
  • Fixed issue with rows and columns not unfreezing when headers are disabled. #10926
  • Fixed imeFastEdit option being reset after updateSettings call #10933
  • Improved fast typing values between editors. #10947
  • Removed double borders for column headers. #10948
  • Fixed column width calculations with stretchH: 'all' option. #10954
  • Fixed missing column summary cell meta state after updateSettings method call. #10955
  • Fixed sorting issue for the time column type. #10956
  • Fixed data populate error with correctFormat usage. #10957
  • Fixed cell meta coordinates overwrite by GhostTable. #10961
  • Fixed setDataAtRowProp error when saving data into a trimmed-out column. #10964
  • Fixed table scrolling issue after inserting a new row over a table-wide selection. #10965
  • Fixed copy/cut/paste issue from outside elements. #10976
  • Fixed autocomplete dropdown dimensions after filtering out all choices. #10977
  • Fixed dataset clearing issue for formulas. #10983
  • Improved typings for the ContextMenu plugin. #10984
  • Added missing type for namedExpressions. #10986
  • Fixed double borders for row/column headers. #10988
  • Fixed a problem, where trying to render a hidden instance made it render all of its rows by disabling the rendering for hidden instances. #10989
  • Fixed error in numeric cell types after entering non-numeric values. #10931
  • Fixed a bug that prevented column sorting of the checkbox cell types. #11004
  • Updated the TS typings of the Shortcut Manager's getShortcuts method. #10910
  • React: Prevented React wrapper from throwing errors on updating component props with init-only settings. #10921

For more information on Handsontable 14.4.0, see:

Readme

Source

Handsontable - data grid for Vue 3

Data Grid for Vue 3

Handsontable's wrapper for Vue 3 combines data grid features with spreadsheet-like UX.
It provides data binding, data validation, filtering, sorting, and CRUD operations.

npm npm CI status FOSSA Status Quality Gate Status


Handsontable data grid for Vue 3

Features

The most popular features of Handsontable for Vue 3:

  ✓  Multiple column sorting
  ✓  Non-contiguous selection
  ✓  Filtering data
  ✓  Export to file
  ✓  Validating data
  ✓  Conditional formatting
  ✓  Merging cells
  ✓  Freezing rows/columns
  ✓  Moving rows/columns
  ✓  Resizing rows/columns
  ✓  Hiding rows/columns
  ✓  Context menu
  ✓  Comments

Documentation

Get Started

Install with npm

Run the following command in your terminal

npm install handsontable @handsontable/vue3

You can load it directly from jsDelivr as well.

<script src="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@handsontable/vue3/dist/vue-handsontable.min.js"></script>

<link href="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.css" rel="stylesheet">

The component will be available as Handsontable.vue.HotTable.

Usage

Use this data grid as you would any other component in your application. Options can be set as HotTable props.

Styles

@import '~handsontable/dist/handsontable.full.css';

Vue 3 Component

<template>
  <hot-table :data="data" :rowHeaders="true" :colHeaders="true"></hot-table>
</template>

<script>
  import { defineComponent } from 'vue';
  import { HotTable } from '@handsontable/vue3';
  import { registerAllModules } from 'handsontable/registry';

  // register Handsontable's modules
  registerAllModules();

  export default defineComponent({
    data() {
      return {
        data: [
          ['', 'Ford', 'Volvo', 'Toyota', 'Honda'],
          ['2016', 10, 11, 12, 13],
          ['2017', 20, 11, 14, 13],
          ['2018', 30, 15, 12, 13]
        ],
      };
    },
    components: {
      HotTable,
    }
  });
</script>

<style src="handsontable/dist/handsontable.full.css"></style>

View live demo

Support

We provide support for developers working with commercial version via contact form or at support@handsontable.com.

If you use a non-commercial version then please ask your tagged question on StackOverflow.

License

Handsontable is a commercial software with two licenses available:

  • Free for non-commercial purposes such as teaching, academic research, and evaluation. Read it here.
  • Commercial license with support and maintenance included. See pricing plans.

License key

If you use Handsontable for Vue 3 in a project that supports your commercial activity, then you must purchase the license key at handsontable.com.

If you use the free for non-commercial license of Handsontable, then pass the phrase 'non-commercial-and-evaluation', as described in this documentation.



Proudly created and maintained by the Handsontable Team.

Keywords

FAQs

Last updated on 11 Jun 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc