Ferro's Gitbook
  • README
  • DevOps
    • Grafana_Cloud
  • OpenWrt
    • DHCP_DNS
    • GLiNet
    • boot
    • captive_portal
    • luci
    • mwan3
    • radius
    • theme
    • wireless
  • apps
    • web
  • BSD
    • Mac
  • Cloud
    • aws
    • azure
    • cf
    • gcp
    • github
    • ibm_bluemix
    • Pricing
  • container
    • docker
    • Kubernetes
    • podman
  • db
    • InfluxDB
    • loki
    • MySQL & MariaDB
    • Oracle
    • PostgreSQL
  • dev
    • AHK
    • BI
    • LBS
    • ML
    • android
    • editor
    • flutter_web
    • git
    • go
    • HTML5/BS
    • j2ee
    • js
    • js_grid
    • js_vue
    • jupyter
    • ocaml
    • powershell
    • py
    • py_GUI
    • Django
    • shell
    • snippets
    • uni
    • vba
    • wechat.zh
    • wechat_mp.zh
  • elec
    • 3D Printing
    • AC
    • MOSFET
    • battery
    • boost
    • bulk
    • metal
    • simulator
  • hw
    • GPU
    • PCI
    • arduino
    • Bluetooth
    • ent
    • Pinout
    • x86_AMD
    • x86_intel
  • linux
    • Test System
    • X
    • arch
    • fs
    • kernel
    • Memory
    • nw
    • Linux Services
    • Systemd
    • text
  • ms
    • vscode
    • windows
    • wsl
  • multimedia
    • Blender
    • audio
    • blender
    • graphics
    • home
  • nw
    • L3
    • L3_IPv6
    • SDN
    • VPN
    • dns
    • hw
    • Low Level
    • mikrotik
    • mwan
    • Openflow
    • OVS
    • pfsense
    • ppp
    • proxy
    • tsocks
    • pxe
    • Security
    • TCP
  • phone
    • Mi
    • android
  • Storage(SW)
  • vt
    • Intel GVT-g
    • PVE
    • QEMU
    • VDI
    • hyper-v
    • kube
    • libvirt
    • OpenStack
  • Web
    • IBM_MQ
    • IBM_Websphere
    • SSL
    • Apache/IBM_IHS
    • blockchain
    • caddy
    • j2ee
    • nginx
    • static_site
Powered by GitBook
On this page
  • vue
  • vxe-table
  • matfish2/vue-tables
  • jquery
  • jexcel
  • standalone
  • HTML Table

Was this helpful?

Edit on Git
  1. dev

js_grid

PreviousjsNextjs_vue

Last updated 2 years ago

Was this helpful?

  • TanStack - React, Solid, Vue, Svelte and TS/JS: https://github.com/TanStack/table#tanstack-table-v8

  • AG Grid - Supports React / Angular / Vue / Plain JavaScript: https://github.com/ag-grid/ag-grid

  • S2 - 多维交叉分析: https://github.com/antvis/s2/#s2

  • Antd Table: https://ant.design/components/table-cn

  • ProTable: https://procomponents.ant.design/en-US/components/table?current=1&pageSize=5

https://github.com/FancyGrid/awesome-grid

vue

vxe-table

https://vxetable.cn/#/table/start/install

  • CDN: https://vxetable.cn/#/table/start/install

  • npm install xe-utils vxe-table@next # better for webpack、vite

js/ts/setup()/JSX: https://vxetable.cn/#/table/start/quick

support tree table: https://vxetable.cn/#/table/advanced/search

matfish2/vue-tables

https://raw.githubusercontent.com/matfish2/vue-tables/master/dist/vue-tables.min.js

Demo: https://jsfiddle.net/matfish2/jfa5t4sm/ Feature: expand row to multi-rows

jquery

jexcel

https://github.com/paulhodel/jexcel

roadmap: Online work collaboration

standalone

  • tabulator: https://github.com/olifolkerd/tabulator

HTML Table

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table

<table>
    <thead>
        <tr>
            <th colspan="2">The table header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>The table body</td>
            <td>with two columns</td>
        </tr>
    </tbody>
</table>

<table>
    <thead>
        <tr>
            <th>Items</th>
            <th scope="col">Expenditure</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th scope="row">Donuts</th>
            <td>3,000</td>
        </tr>
        <tr>
            <th scope="row">Stationery</th>
            <td>18,000</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <th scope="row">Totals</th>
            <td>21,000</td>
        </tr>
    </tfoot>
</table>
vue
vxe-table
matfish2/vue-tables
jquery
jexcel
standalone
HTML Table