Click or drag to resize

WorkspaceEditorConfiguration Class

The configuration class for a WorkspaceEditorWebPart
Inheritance Hierarchy

Namespace:  Colygon.MatchPoint.Workspaces.Configuration
Assembly:  Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax
C#
[SerializableAttribute]
public class WorkspaceEditorConfiguration : BaseFormConfiguration

The WorkspaceEditorConfiguration type exposes the following members.

Constructors
  NameDescription
Public methodWorkspaceEditorConfiguration
Initializes a new instance of the WorkspaceEditorConfiguration class
Top
Properties
  NameDescription
Public propertyCommands
Contains command button definitions, that can be referenced in the Ribbon or the InlineButtons node.
(Inherited from BaseFormConfiguration.)
Public propertyContextualRibbonGroups
Contains contextual ribbon groups that are displayed for this WebPart.
(Inherited from BaseFormConfiguration.)
Protected propertyHasInlineCancelButton (Inherited from BaseFormConfiguration.)
Protected propertyHasInlineCommands (Inherited from BaseFormConfiguration.)
Protected propertyHasInlineEditButton (Inherited from BaseFormConfiguration.)
Protected propertyHasInlineResetButton (Inherited from BaseFormConfiguration.)
Protected propertyHasInlineSaveButton (Inherited from BaseFormConfiguration.)
Public propertyInlineButtons
Specifies commands that are visible within the form by referencing command configurations.
(Inherited from BaseFormConfiguration.)
Public propertyIsPre4011 (Inherited from BaseFormConfiguration.)
Top
Methods
  NameDescription
Public methodCreateWebPart (Overrides BaseFormConfigurationCreateWebPart.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAvailableFieldNames (Inherited from BaseFormConfiguration.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetRibbonButtons (Inherited from BaseWebPartConfiguration.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldActions
Specifies specific buttons for workspace actions that should be displayed in the ribbon. This setting is not valid if the Web Part is in 'create' mode.
Public fieldBeforeUpdateActions
Contains actions that are executed before the record is updated. Changes in field values (SetFieldAction) will be included on record update. This actions will be ignored if there is no data adapter configured.
(Inherited from BaseFormConfiguration.)
Public fieldChrome (Inherited from BaseFormConfiguration.)
Public fieldCloseAction
Specifies the behavior of the form after the 'Save' or 'Cancel' buttons were clicked. 'None' will reload the items from the source. 'Back' will either close the active dialog (if the page where the form is placed was opened in a dialog) or redirect to the page referenced in the query string parameter 'Source'.
(Inherited from BaseFormConfiguration.)
Public fieldColumns
Contains columns that are used to specify the layout of the Web Part.
(Inherited from BaseFormConfiguration.)
Public fieldEnableToggleEdit
Specifies whether users can toggle between read-only and edit mode. This setting has no effect if the form's initial state is editable.
(Inherited from BaseFormConfiguration.)
Public fieldFields
Contains fields that are displayed on the Web Part.
(Inherited from BaseFormConfiguration.)
Public fieldLabelMode
Specifies where field titles are displayed.
(Inherited from BaseFormConfiguration.)
Public fieldMissingWritePermissionMessage
Specifies the message that should be displayed if the user has no write permission.
(Inherited from BaseFormConfiguration.)
Public fieldName
Specifies the name for this Web Part. This name is used to refer to the Web Part when using connections.
(Inherited from BaseFormConfiguration.)
Public fieldPostActions
Contains post actions that are executed when the user clicks the 'Save' button.
(Inherited from BaseFormConfiguration.)
Public fieldReadOnlyExpression
Specifies whether the Web Part is rendered in read-only mode. The expression is expected to return a Boolean value. The form will be read-only if the expression evaluates to 'true'. If the form is in item creation mode, this expression will be ignored and the form will be editable.
(Inherited from BaseFormConfiguration.)
Public fieldSaveButtonCaption
Specifies the caption of the save button.
(Inherited from BaseFormConfiguration.)
Public fieldSuccessMessage
Specifies a message that is displayed after the configured record was successfully updated. You can use 'ItemUrl' to get the URL of the updated record (provided that the record has an URL). This setting will be ignored if the close action is set to 'Back'.
(Inherited from BaseFormConfiguration.)
Public fieldSuccessMesssageType
Specifies the type of the success message.
(Inherited from BaseFormConfiguration.)
Public fieldTemplateId
Specifies the workspace template
Public fieldTitle
Specifies the title of the Web Part.
(Inherited from BaseFormConfiguration.)
Public fieldWorkspaceExpression
Specifies an expression that is expected to return a SPWeb, a SPListItem, a list item id, or the URL of a workspace. If empty, a new workspace will be created.
Top
Remarks
This is a MatchPoint configuration class.
See Also