docs(data-table): rework "Batch selection with initial selected rows" example

This commit is contained in:
Eric Liu 2022-04-30 09:32:37 -07:00
commit 35985097da

View file

@ -0,0 +1,24 @@
<script>
import { DataTable } from "carbon-components-svelte";
let selectedRowIds = [2, 4];
$: console.log("selectedRowIds", selectedRowIds);
</script>
<DataTable
batchSelection
bind:selectedRowIds
headers="{[
{ key: 'name', value: 'Name' },
{ key: 'port', value: 'Port' },
{ key: 'rule', value: 'Rule' },
]}"
rows="{Array.from({ length: 6 }).map((_, i) => ({
id: i,
name: 'Load Balancer ' + (i + 1),
protocol: 'HTTP',
port: i % 3 ? (i % 2 ? 3000 : 80) : 443,
rule: i % 3 ? 'Round robin' : 'DNS delegation',
}))}"
/>