API Reference
Advanced Tutorials
Comparison
FAQ
Contributing
Testing
Migration Guide
Licence
This is documentation for Refine 3.xx.xx, which is no longer actively maintained.
For up-to-date documentation, see the latest version (4.xx.xx).
Version: 3.xx.xx
on-search-live-preview
localhost:3000/products
Live previews only work with the latest documentation.
import { useSelect } from "@pankod/refine-core";
interface ICategory {
id: number;
title: string;
}
const ProductCreate: React.FC = () => {
const { options, onSearch } = useSelect<ICategory>({
resource: "categories",
onSearch: (value) => [
{
field: "title",
operator: "contains",
value,
}
]
});
return (
<>
<p>
Filter:
<input onChange={(e) => onSearch(e.target.value)} />
</p>
<select>
{options?.map((option) => (
<option key={option.value} value={option.value}>
{option.label}
</option>
))}
</select>
</>
);
};