Jason Coley

Results 23 comments of Jason Coley

Did you figure this out, I have tried var appRoleManager = new ApplicationRoleManager(new MySqlRoleStore()); return appRoleManager; Which works for creating but it seems a lot of functions don't work, FindByIdAsync...

OK I got the roles working from the latest code, thank you. Now can we add claims using this API yet or is this not finished? Just trying to figure...

Id love to be able to apply a gradient to a frame as well?

Any news on this, I am a new Xamarin/Gorilla developer, I use a Converter to load the images, when I need them, based on values in the underlying data. The...

I also am experiencing this with a redirect from a loader. I have a parent route that checks for a child route id, if none is present it finds the...

Have you tried wrapping the DndProvider in ClientOnly from https://github.com/sergiodxa/remix-utils/tree/main?tab=readme-ov-file#clientonly I have to use this for @hello-pangea/dnd which is an updated fork of react-beautiful-dnd

+1 for me also, seems odd this is available for mongo and not postgres? But doesn't look like this will ever be a thing, as there seems to be nothing...

I have quite often had to add an effect to reset the form when formdata has loaded... useEffect(() => { form.reset() // eslint-disable-next-line react-hooks/exhaustive-deps }, [formData]) This has been needed...

@edmundhung This might work with the actiondata, but it doesn't help the situation of a master detail layout, with record selection on one side, then the selected record in an...

@edmundhung OK, I hadn't seen this tip here... https://conform.guide/api/react/useForm#tips regarding adding the data id into the id in useForm, this seems to have fixed this issue for me, excellent, thank...