class %CSP.UI.System.NamespaceForm
extends %RegisteredObject, %CSP.Util.AutoForm
This class is used internally by Caché. You should not make direct use of it within your applications. There is no guarantee made about either the behavior or future operation of this class.
property Globals
as %CSP.Util.Choice(CAPTION="Default Database for Globals",CAPTIONCOLUMN="Name",QUERYCLASS="Config.Databases",QUERYNAME="List",VALUECOLUMN="Name");
Default Global Database
property Routines
as %CSP.Util.Choice(CAPTION="Default Database for Routines",CAPTIONCOLUMN="Name",QUERYCLASS="Config.Databases",QUERYNAME="List",VALUECOLUMN="Name");
Default Routine Database
property Temp
as %CSP.Util.Choice(CAPTION="Default Database for Temporary Storage",CAPTIONCOLUMN="Name",QUERYCLASS="Config.Databases",QUERYNAME="List",VALUECOLUMN="Name");
Default Temp Storage
classmethod CreateInstance(ByRef pID As %String)
as %CSP.Util.AutoForm
Create an instance of the AutoForm object using the provided ID value(s).
This is overridden by subclasses.
The default implementation will perform an OpenId if the AutoForm is a persistent object.
method OnSubmit(ByRef pID As %String, pSubmit As %String)
as %Status
This callback is called when this form is submitted.
pID is the ID value associated with the form.
The default implementation will perform a Save if the AutoForm is a persistent object.
pSubmit is the name of the submit button (i.e., $AUTOFORM_SAVE).