EditForm in Kinetic

Hoping for some direction on replacing a generic EditForm dialog with a Kinetic solution. In Classic, a button opens an EditForm:

As you can see it’s super-simple. This form gets all of its data from a SQL query outside of the Epicor db. The issue is, I need my users to load this same form. The EditForm class is in the Microsoft.AspNetCore.Components.Web Asm and I can’t pull that Asm into a function. Is there a way to use/call an EditForm from my custom layer, or perhaps there’s another tool out there that can do this?

Much obliged tips hat

2 Likes

I doubt you’re going to find anything comparable in Kinetic.
You could write your own web app, host it in your local IIS, and then display it using a website widget? Maybe? Kinda spit-balling here.

What does that EditForm thing actually do? What do you use it for?

2 Likes

Yes, that’s what I’m afraid of. Thank you for your reply.

I did think about the web app direction, but was hoping to use EditForm as it’d be the fastest solution. There’s a dropdown in the layer that gets its selection values from a non-Epicor db. The EditForm allows users to add dropdown selections to this db when they need to. They like how they can just toss them in there without opening the 3rd party app. The form itself is wildly simple, 3 columns, add/upd/delete, that’s it.

1 Like