Refine

R

Refine

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

Join

ask-any-question

discussions

metropolitan-bronze
metropolitan-bronze11/2/2024

Query Multiple Resources at Once

Is it possible to query multiple tables at once in order to avoid potential side-effects with different number of renders and improve efficiency? See: ```js const { dataGridProps } = useDataGrid(); ...
foreign-sapphire
foreign-sapphire11/2/2024

Implement Oauth PCKE flow

Hi, I want to implement social logins into custom auth, but these all require a callback route and I was wondering how to deal with all that on refine.
flat-fuchsia
flat-fuchsia11/2/2024

Next.js 15

I am wondering when you will support next.js15? #nextjs
xenial-black
xenial-black11/1/2024

TanStack router support

is it possible to use Refine with TanStack Router?
vicious-gold
vicious-gold11/1/2024

useParsed

useParsed memo is not stable
metropolitan-bronze
metropolitan-bronze11/1/2024

Foreign Key in Meta.Select

Does anyone know how I can reference a column from the parent in meta. select? See: ```js <Refine dataProvider={dataProvider(supabaseClient)}...
absent-sapphire
absent-sapphire11/1/2024

How to get logged user ID from data provider?

I have a custom data provider. On the create function, I want to pass the logged user ID to the body of every create request. How can i do this? This is my create function on Data provider ```...
quickest-silver
quickest-silver11/1/2024

AutoComplete not being filled automatically

Hello, i have an AutoComplete component inside a Controller from Hook Form, both inside an Edit view component of MUI. The other fields are automatically filled with the response from the request that the Edit component calls. But my AutoComplete doesn't fill with the value coming from the response. My code below: const { autocompleteProps: processTypeProps } = useAutocomplete<any>( { resource: "process-type", }...
optimistic-gold
optimistic-gold10/31/2024

Overriding refreshButton onClick handler

How can I override the onClick handler for the refresh button displayed in the Edit "Basic View" component?
flat-fuchsia
flat-fuchsia10/30/2024

How do I integrate MongoDB Backend to refine app-crm-minimal template?

I have an app that I have setup with the example: https://github.com/refinedev/refine/tree/master/examples/app-crm-minimal But using this structure, I wanted to integrate my MongoDB backend as the data provider, but I'm having some trouble understanding this example structure...
vicious-gold
vicious-gold10/29/2024

useDataGrid

data changes and causes extra draws
absent-sapphire
absent-sapphire10/29/2024

why refresh required to have values bound to form here?

``` import { useShow, useOne } from "@refinedev/core"; import { Show, NumberField, DateField, Edit } from "@refinedev/mui"; import { Typography, Stack, Box, TextField } from "@mui/material"; import { Form } from "@formio/react";...
absent-sapphire
absent-sapphire10/29/2024

useForm diff btw @refinedev/core and @refinedev/react-hook-form?

useForm diff btw @refinedev/core and @refinedev/react-hook-form?
absent-sapphire
absent-sapphire10/29/2024

why register() method not work?

``` import { useSelect } from "@refinedev/core"; import { useForm } from "@refinedev/react-hook-form"; export const PostEdit: React.FC = () => {...
vicious-gold
vicious-gold10/29/2024

mui datagrid ncontains

crud filters support ncontains but data grid appears not too
ambitious-aqua
ambitious-aqua10/29/2024

Multiple params in query

How can I use multiple params in a route? Something like /user/:uid/object/:id ? it seems that only "id" is a valid property for ParseResponse for ...
foreign-sapphire
foreign-sapphire10/28/2024

useList, get current pageSize and pageIndex

Hi, how can I get the current pageSize and pageIndex, like useTable has in its tableProps but then for useList
conscious-sapphire
conscious-sapphire10/27/2024

`redirect` useForm(@refinedev/antd) with nextjs-router doesn't work

Refine: ``` <Refine routerProvider={routerProvider} dataProvider={{...
deep-jade
deep-jade10/27/2024

Can one Antd table house two different resources (users and memberships) ?

Can one Antd table house two different resources (users and memberships)? If so, how?
absent-sapphire
absent-sapphire10/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?