quickest-silver
quickest-silver4mo ago

I have a list of customers, and I need to create a button in the actions to list the addresses relat

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?
16 Replies
wise-white
wise-white4mo ago
Hello
constant-blue
constant-blue4mo ago
best json editor to use in form.items in ant design style?
other-emerald
other-emerald4mo 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.
xenial-black
xenial-black4mo 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
sensitive-blue4mo 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
rival-black
rival-black4mo ago
Now I am actively looking for a new job opportunity or task, and here, I'd like to connect with you. Thank you.
unwilling-turquoise
unwilling-turquoise3mo 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?
deep-jade
deep-jade3mo 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
subsequent-cyan
subsequent-cyan3mo 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
extended-yellow
extended-yellow3mo ago
Hii
extended-salmon
extended-salmon3mo ago
Hi guys I have a big concern on refine my setup is using hasura as data, provider with chakraui. The cons is that whenever i run npm run dev as preload and visited site it takes 20 seconds up to fully load just the auth page
extended-salmon
extended-salmon3mo ago
i modify the vite config with this import path from 'path'; // import react from '@vitejs/plugin-react'; import react from '@vitejs/plugin-react-swc'; import { defineConfig } from 'vite'; import compression from 'vite-plugin-compression'; import imagemin from 'vite-plugin-imagemin'; // https://vitejs.dev/config/ export default defineConfig({ plugins: [ react(), imagemin({ gifsicle: { optimizationLevel: 3 }, mozjpeg: { quality: 75 }, optipng: { optimizationLevel: 5 }, svgo: { plugins: [{ removeViewBox: false }] }, }), compression({ algorithm: 'brotliCompress' }), ], resolve: { alias: { '@app': path.resolve(dirname, './src/app'), '@entities': path.resolve(dirname, './src/entities'), '@features': path.resolve(dirname, './src/features'), '@pages': path.resolve(dirname, './src/pages'), '@shared': path.resolve(dirname, './src/shared'), '@widgets': path.resolve(dirname, './src/widgets'), }, }, server: { port: Number(process.env.VITE_PORT) || 5174, hmr: { overlay: false, }, }, build: { cssMinify: true, cssCodeSplit: true, }, });
vitejs
Configuring Vite
Next Generation Frontend Tooling
rival-black
rival-black3mo ago
I am actively looking for new job opportunities or tasks as a Web Full Stack Developer with experience in Smart Contracts, NFTs, DeFi, and DApps. I’d love to connect with you. Thank you!
deep-jade
deep-jade3mo ago
hello guys im trying to add server side rendering hydration on my react router v7 app, for the sake of me I cant find a way to properly generate the query key this is how i managed to make it work
const queryKey = keys().data().resource("employee-group").action("list").params({
filters: [{
field: "type",
operator: "eq",
value: "LOCATION",
}],
hasPagination: true,
pagination: {
current: 1,
pageSize: 10,
mode: "server",
},
sorters: [],
}).get()
const queryKey = keys().data().resource("employee-group").action("list").params({
filters: [{
field: "type",
operator: "eq",
value: "LOCATION",
}],
hasPagination: true,
pagination: {
current: 1,
pageSize: 10,
mode: "server",
},
sorters: [],
}).get()
the issue is this wont scale as if i do any change on how the data-table component which uses useTable (from @refinedev/react-table) behaves (like adding pagination) i will have to add hacks for setting the paginaton on the url and so forth
eager-peach
eager-peach3mo ago
Hi there! I'm a senior software engineer, passionate about building solutions that can truly make a difference. I'm here to collaborate and help bring your ideas to life. If you have any projects in mind, feel free to reach out—I'd love to hear about them. My specialty lies in backend development, and I'm ready to dive in. Skills: - Web Frontend: React.js, Next.js, Vue.js, Nuxt.js, Angular - CSS: Styled-Components, TailwindCSS, Shadcn UI - Backend: Node.js, Python, Nest.js, Golang, Rust - Mobile: Expo, Flutter, React Native - Blockchain - AI This my profile. GMail Address: dusan.dimic0806@gmail.com Linkedin: https://www.linkedin.com/in/dusan-dimic-679436302/ Github: https://www.github.com/SuperDev993595/ MySite: https://dusan-profile86.vercel.app/ TGram: https://t.me/superdev86 Whatsapp: (+63) 951 821 1205 If you think I could be any of your help, pls let me know. I will always be with you. Best Regards. Dusan Dimic Please DM me.
GitHub
SuperDev993595 - Overview
No pain, no gain. Past is gone and static. Future is before us and dynamic. Do best. - SuperDev993595
Portfolio
Self Developed personal website build with React.js
Telegram
Super Dev
SUCCESS
like-gold
like-gold2mo ago
anyone used MSAL ? Tried the ask question but cant really get to a solution. I can loose authentication against my backend, so I need to refresh token against MSAL . Which I do in AuthProvider-> onError. However, I need somehow to refresh the page where the problem lies. I don't know how to do that

Did you find this page helpful?