Skip to main content

%CSP.UI.SQL.TableForm

class %CSP.UI.SQL.TableForm extends %Library.RegisteredObject, %CSP.Util.AutoForm

This class is used internally by InterSystems IRIS. 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.

Create New Table

Property Inventory

Method Inventory

Properties

property NumberOfColumns as %Integer;
Number of Columns
Property methods: NumberOfColumnsDisplayToLogical(), NumberOfColumnsGet(), NumberOfColumnsIsValid(), NumberOfColumnsLogicalToDisplay(), NumberOfColumnsNormalize(), NumberOfColumnsSet()
property SchemaName as %String;
Schema
Property methods: SchemaNameDisplayToLogical(), SchemaNameGet(), SchemaNameIsValid(), SchemaNameLogicalToDisplay(), SchemaNameLogicalToOdbc(), SchemaNameNormalize(), SchemaNameSet()
property TableName as %String (MAXLEN = 30);
Table Name
Property methods: TableNameDisplayToLogical(), TableNameGet(), TableNameIsValid(), TableNameLogicalToDisplay(), TableNameLogicalToOdbc(), TableNameNormalize(), TableNameSet()

Methods

classmethod CreateInstance(ByRef pID As %String) as AutoForm
Inherited description: 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.
classmethod DrawHTMLForm(pObj As %RegisteredObject, ByRef pID As %String, pActionURL As %String = "", ByRef pButtons As FormButton, pTarget As %String = "") as %Status
Draw an HTML form for this form object.
pObj is an instance of the form object that provides the initial values for the form.
pActionURL is the URL to submit this form to.
pButtons is an array of submit buttons to display for the form. If not provided, the default Save and Cancel buttons are shown. pButtons is an integer-subscripted array of FormButton objects.
classmethod OnDefineButtons(ByRef pButtons As FormButton)
define standard Login buttons
method OnSubmit(ByRef pID As %String, pSubmit As %String) as %Status
Inherited description: 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).

Inherited Members

Inherited Methods

FeedbackOpens in a new tab