
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
inertia-datagrid
Advanced tools
you can use pacakge with vue 3 and custom slots
const props = defineProps({
users: Array,
});
const columns = [
{
name: "id",
label: "NO",
field: "id",
sortable: true,
},
{
name: "name",
label: "Name",
field: "name",
sortable: true,
},
{
name: "email",
label: "E-MAIL",
field: "email",
sortable: true,
},
{
name: "verification",
label: "Email Verified At",
field: "email_verified_at",
sortable: false,
},
{
name: "created_at",
label: "Created At",
field: "created_at",
sortable: true,
},
{
name: "actions",
label: "Actions",
type: "action",
},
];
const actions = [
{ title: "View", route: "admin.users.show", color: "blue" },
{ title: "Edit", route: "admin.users.edit", color: "orange" },
{ title: "Delete", route: "admin.users.destroy", color: "red" },
];
import DataGrid from "inertia-datagrid";
<DataGrid :columns="columns" :data="users" :actions="actions" baseRoute="admin.users.index">
</DataGrid>
<datagrid :columns="columns" :data="users" :actions="actions" baseRoute="admin.users.index">
<template v-slot:row-cell-email_verified_at="{ item }">
<div class="py-2">
<span v-if="!item" class="text-xs bg-red-100 text-red-500 rounded-lg p-1">Verified</span>
<span v-else class="text-xs bg-green-100 text-green-500 rounded-lg p-1">Not Verified</span>
</div>
</template>
</datagrid>
FAQs
inertia datagrid best package to make a datagrid in inertia.js
We found that inertia-datagrid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.