select
Description
Optional. Enables/disables the possibilty to select rows on click.Usage
select?: boolean;
Parameters
Enables/disables the possibilty to select rows on click. The selection is enabled by default (the value is set to true).
Example
<script>
import { getData } from "./common/data";
import { Grid } from "wx-svelte-grid";
const { data, columns } = getData();
</script>
<Grid
{data}
{columns}
select={false} />
Related articles: select-row