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.
true
- the selection is enabled (default)false
- the selection is disabled
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