What is the right approach to display an entity creational dialog/popup? #2237
-
I have a bit complicated entity creational dialog How should I implement it with navigation extensions and |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@nickrandolph might have some insights but I imagine you would want to navigate to this page using the And I'm also thinking you'd want to navigate to this page and wait for a result back with the created entity or the cancellation. Which can be accomplished with the You can see a usage of either in our Commerce sample app here |
Beta Was this translation helpful? Give feedback.
@nickrandolph might have some insights but I imagine you would want to navigate to this page using the
Dialog
qualifier, as seen in this guide: https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Navigation/HowTo-ShowFlyout.htmlAnd I'm also thinking you'd want to navigate to this page and wait for a result back with the created entity or the cancellation. Which can be accomplished with the
INavigator
using theNavigateForResultAsync
extension method. This is a guide for requesting data through navigation: https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Navigation/HowTo-SelectValue.html. Although this one is using theGetDataAsync
method instead and I…