Refine

R

Refine

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

Join

ask-any-question

discussions

rival-black
rival-black2/23/2024

How to use functions in authbindings for auth0

How to use functions in authbindings for auth0
conscious-sapphire
conscious-sapphire2/23/2024

want to remove refine logo

is it possible to remove refine logo from project and put my own logo?
rival-black
rival-black2/23/2024

auth0 access user metadata

iam using auth0 in refine dev i want to access the credentials and user metadata in in my app.tsx file
other-emerald
other-emerald2/23/2024

Sub resource in antd tabs

I'm trying to get a component as a "SubResource" of some sort. I implemented a resource for "projects" with a show page, and on that page I put antd tabs. On the first tab there is the show component for products. On the second tab, I'd like a list component for that subresource (project admins) and the url to reflect something along the lines of "projects/:id/projects-admin"....
ambitious-aqua
ambitious-aqua2/23/2024

Missing "./dist/inferencers" specifier in "@refinedev/inferencer" package

I get the following error when running my dev server: Missing "./dist/inferencers" specifier in "@refinedev/inferencer" package I have ensured that I ran npm i @refinedev/inferencer again. I have ensured that "./dist/inferencers" exists and "./dist/inferencers/mui" as well. I have lastly also ensured that the following is set in both our tsconfig and vite config: "moduleResolution": "node",...
conscious-sapphire
conscious-sapphire2/23/2024

Remix docs out of date?

I'm just starting to experiment with refine in Remix and coming across issues when using some of the examples in particular SSR https://refine.dev/docs/routing/integrations/remix/#how-to-make-ssr-work If I understand correctly it seems things have changed since this was written, for example: ...
eastern-cyan
eastern-cyan2/23/2024

have use simple list to make an api call , want to call that api again after a function execution

have use simple list to make an api call , want to call that api again after a function execution how to achieve it
harsh-harlequin
harsh-harlequin2/23/2024

CRM-App implementation

I am having difficulties implementation the CRM-APP Example. It's working fine with the default refine api that was in the example, but now i've setup a database and want to re-direct the app too look into the values in that database. I've setup an Apollo server with GraphQL and i can make requests and return values, but it does not seems to go over to my website, i keep getting network errors, and i don't know how to debug this....
rival-black
rival-black2/23/2024

why not useTable search after data update?

``` export default function PointList() { const { tableQueryResult, pageCount, pageSize, current, setCurrent } = useTable({ resource: "points", pagination: {...
rival-black
rival-black2/23/2024

i dont want type script in my refine dev project

i want to use .js not type script in my refine dev project
rival-black
rival-black2/23/2024

how to fix ngrok CORS error?

I paid for ngrok and was issued a fixed domain. CORS occurs when calling from my local ngrok domain API. `` const customergroupsResponse = await fetch(${process.env.NEXT_PUBLIC_CAFE24_API_URL}/customergroups`, { headers: { 'Content-Type': 'application/json',...
genetic-orange
genetic-orange2/22/2024

when I make request with any hook, the request is sent three times before showing the error message.

How can I make to just send one request before handling the error?
sensitive-blue
sensitive-blue2/22/2024

add Authentication

how could I add authentication to existed project
robust-apricot
robust-apricot2/22/2024

autocomplete infinite scroll

how can i add pagination to Autocomplete component on scroll, it will fetch new options everytime i scroll to end
robust-apricot
robust-apricot2/22/2024

redirect after create

on succesfull form submit on create or edit, it automatically readirects to list page but i want to additional queryparams to it when redirecting to list
sunny-green
sunny-green2/22/2024

Debounce DataGrid filter

How can I configure the DataGrid to debounce the built-in filter input?
sunny-green
sunny-green2/22/2024

How to filter on relation fields in a DataGrid?

I have a DataGrid that has a column with a relationship field. I show this field with its 'name' field. How can I configure the DataGrid filter to be able to filter using this 'name' field?
rival-black
rival-black2/22/2024

How to use props?

PointList receives points as props. How do I change the points data to be used in useDataGrid, useExport, useForm? ``` export default function PointList({ points }: any) { type PointDetail = IPointDetailItem[] | ''...
like-gold
like-gold2/21/2024

Autocomplete not working inside UseModalFormReturnType component

I am trying to use Autocomplete in separate drawer component. When I console.log value onChange or in getOptionLabel, values are there as they should be but nothing shows up in Controller.
harsh-harlequin
harsh-harlequin2/21/2024

App-CRM

First of all, love refine. This is so cool, but i am still very new to coding and i've been stuck for hours now. I'm trying to continue working on this example https://example.crm.refine.dev/ ...