I'm using react-table
and have a filter method for each column which works. However, I cannot seem to figure out how I actually style the filter input field - it's white now and blends in with the background.
Here's a codepen where the "Last Name" column is filterable, with an input field: https://codepen.io/anon/pen/QgOdOp?editors=0010
I want to add some semantic styling to this input field, such as this:
<div className="ui icon input">
// Input values would go here
<i className="search icon" />
</div>
But I do not seem to know how to bind the input value to the column itself.
I've tried the following in the specific column, but it doesn't render anything:
{
Header: 'Last Name',
filterable: true,
id: 'lastName',
accessor: d => d.lastName
Filter: Cellinfo => (
<div className="ui icon input">
<select onChange={event => onFiltersChange(event.target.value)} value={filter ? filter.value : ''}></select>
<i className="search icon" />
</div>
)
}
This could be accomplished with plain CSS. Give the table an
id
orclass
, then target the inputs and style them as needed.The better option would be to use
react-table
s built-inFilter
column option to define a custom UI for the filter. This is documented in the Custom Filtering example. This allows you to pass astyle
object.Using this you could define a background image to achieve the icon you want. Or you could pass in a custom component which sets an icon element behind the input. Something like this: