Hilla GridFilterColumn

13 Views Asked by At

How do I replace the basic input of the Hilla GridFilterColumn component with a Select

    <GridFilterColumn autoWidth flexGrow={0} frozen path="type">
      <Select
        items={items}
        value={typeFilterValue}
        onChange={(event) => setTypeFilterValue(event.detail.value)}
      />
    </GridFilterColumn>

Not working

0

There are 0 best solutions below