Is it possible to share the c# code of GeneXus "Save as" window?
What I need is to represent the exact way to request the Module/Folder control.
In my extension window I will request:
- Name
- Description
- Module/Folder
It will be invoqued when the user select (with right click) a PXTools PXWorkWith pattern instance node and will suggest to create a PXTools PXQuery pattern instance getting the information from this original PXWorkWith node.
Thanks
The
Save ascommand of GeneXus is implemented using theCopymethod of theObjectsUI service. e.g.The Copy method opens the dialog that prompts for a new name, and allows choosing where to save the object. If the user confirms saving the object, and there are no issues saving the copy, the saved copied instance is returned. Otherwise it returns
null.If you're interested in just using the dialog, and not the whole implementation, it can be invoked through the
NewObjectDialogUI service. e.g.If the user confirms the dialog, an unsaved empty instance is returned. Otherwise it returns
null.Hope that helps.