Refine

R

Refine

Join the community to ask questions about Refine and get answers from other members.

Join

ask-any-question

discussions

dependent-tan
dependent-tan10/26/2024

How to create Multiple resource based on permanent filter?

How to create multiple resources from the same API endpoint but the difference is each resource has a different permanent filter?
dependent-tan
dependent-tan10/26/2024

How to keep the filter after refresh on Antd Table?

@kapa.ai How to keep the filter when the page is refreshed with FilterDropdown? ``` <Table.Column dataIndex="customer_id" title="Customer"...
dependent-tan
dependent-tan10/26/2024

How to set default site locale on AntD Refine?

How to set the default locale settings for numbering format such as thousands separator etc. on Refine with Ant design?
absent-sapphire
absent-sapphire10/26/2024

Getting this whenever running npm run dev

pls help 🙂
No description
passive-yellow
passive-yellow10/26/2024

trying to filter resource by dates through api

i have resource orders, that is taken from my backend api i am trying to pass two dates so that api only extract orders within this period of time. I pass them through meta parameters and it works ``` const { tableProps, setFilters } = useTable<InterfaceOrders>({...
quickest-silver
quickest-silver10/26/2024

Filter AntD table for null values in DateTime column using NestJS-Query

How can I filter AntD table for null values in DateTime column using NestJS-Query?
quickest-silver
quickest-silver10/24/2024

FilterDropdown with null operator

In Antd table using NestJS-Query, how to do FilterDropdown with null operator? ``` <Table.Column<Ticket> dataIndex="validated" title="Validated"...
wee-brown
wee-brown10/24/2024

Ant Design App CRM template becomes enterprise.

I've been using the Ant Design App CRM template, which was previously free. All backend endpoints in my application are custom-built. Now that the template has transitioned to an enterprise model, will this affect my app?
quickest-silver
quickest-silver10/24/2024

How to dim savebutton if form does not change by useForm?

How to dim savebutton if form does not change by useForm?
deep-jade
deep-jade10/24/2024

How to create custom field using AntD

@kapa.ai i have an example using mui <Controller...
quickest-silver
quickest-silver10/23/2024

Filter mode "off" only for one filter in table (AntD)

Can I specify filter mode "off" for only one column in antd table and rest of the columns can have filter mode "server"?
dependent-tan
dependent-tan10/23/2024

How to use validator to validate Form.List on Antd

```typescript const BankAccountSubForm = () => { return <Form.List name="bank_account" >...
dependent-tan
dependent-tan10/23/2024

How to use Refine Antd DeleteButton with additional query params to the delete function?

This is my DeleteButton on the List ```typescript <DeleteButton hideText size="small"...
quickest-silver
quickest-silver10/22/2024

Nothing happens when I click on filter

``` <Table.Column<Template> dataIndex="base" title="Base" defaultFilteredValue={getDefaultFilter('base', filters, 'eq')}...
quickest-silver
quickest-silver10/22/2024

Overwrite useTable from antd return type

How can I overwrite / extend return type of antd useTable hookM
quickest-silver
quickest-silver10/22/2024

Filter boolean field with antd table

How do I filter boolean value with filterDropdown in antd list view? What am i doing wrong here? ``` <Table.Column<Template> dataIndex="base" title="Base"...
national-gold
national-gold10/22/2024

hook form mui autocomplete

I am trying to report error if the value is not in the options to the autocomplete . <FormControl sx={{ padding: 0 }}> <Controller control={control}...
quickest-silver
quickest-silver10/22/2024

Have refine support strap v5?

Have refine support strap v5?
wise-white
wise-white10/21/2024

add _id to as row.id for refine useShow

Hello, im having trouble trying to get data to return in the refine useShow. MongoDB returns _id as the row.id but useShow looks for "id", is there any way to let it use _id?
quickest-silver
quickest-silver10/21/2024

AuthProvider does not trigger check method after changing route (resource)

If I am inactive on a page for a while and after that change resource (page), AuthProvider does not trigger check method after changing route (resource), so I get unauthenticated error. Why?