hi are you planing to upgrage refine/node docker image or maybe i can use other images?
hi are you planing to upgrage refine/node docker image
or maybe i can use other images?
11 Replies
dependent-tan•2mo ago
Has anyone worked with surrealdb and refine?
like-gold•5w ago
Algum do Brasil no canal, poderia me ajudar?
I have a list of customers, and I need to create a button in the actions to list the addresses related to that customer. How do I do it?
xenial-black•5w ago
Hello
sunny-green•4w ago
best json editor to use in form.items in ant design style?
flat-fuchsia•4w ago
I don't think this is a support question as much as just asking for experience and advice so I'm putting it here first.
Has anyone had any experience implementing a simple code editor into a refine project? I am using the supabase+mui starter for reference. I need to find a solution to edit and just display syntax highlighted code in three different languages, Typescript, Rust and Python.
The more tightly integrated the better.
helpful-purple•4w ago
hello, guys, i have an issue i am having for several days. I wanted to make a table component using useTable hook from
"@refinedev/react-table"
Basically, the columns field don't want to accept ColumnDef<TData>[] type value. It gives me:
ColumnDef<TData, any>[]' is not assignable to type 'ColumnDef<BaseRecord, any>[]
but if I try to hard code the columns to a type ColumnDef<BaseRecord, any>[] , it errors: Type 'BaseRecord' is not assignable to type 'TData'. Please help me
sensitive-blue•3w ago
Does anyone know where to find the Database SQL dump so that I can create the base table structures for storing and fetching the data? Or am I missing something
Figured it out. Used the Cursor AI to write a script to go from the graphql to sql
xenial-black•2w ago
Now I am actively looking for a new job opportunity or task, and here, I'd like to connect with you. Thank you.
ugly-tan•4d ago
Hey, I've fixed an issue related react-hook-form. Now I need to write unit test for that fix. I am unable to run tests. Little confused between so many packages. Can anyone help me with that?
metropolitan-bronze•4d ago
Hi. Can I define routes outside of App.tsx file? When I did that, it threw exception:
Missing "./." specifier in "@refinedev/react-router" package
useful-bronze•16h ago
hello guys, i used refine antd for authpage, and i wanna show the icon of show/hide password
<Input.Password
placeholder="Password"
iconRender={(visible) => (visible ? <EyeOutlined /> : <EyeInvisibleOutlined />)}
/>
but nothing is changed, is there a predifined prop in authpage for that ? and thanks
PS: i used the same Input.Password outside the authPage tag and it icon is displayed normal