Javascript for Episerver 7.5 cms

command
component
contentediting
command
- _ChangeContentStatus
- _CommandWithDialogMixin
- _ContentAreaCommand
- _ContentCommandBase
- _LegacyDialogCommandBase
- AccessRights
- BlockEdit
- BlockRemove
- CancelAndEdit
- ContentAreaCommands
- CreateDraft
- DynamicProperties
- EditCommonDraft
- Editing
- ForPublishMenu
- IgnoreInUseNotification
- ItemCollectionCommands
- ItemEdit
- LanguageSettings
- ManageExpiration
- MoveOutsideGroup
- MoveToNext
- MoveToPrevious
- MoveVisibleToNext
- MoveVisibleToPrevious
- NewItem
- PermanentInUseToggle
- Personalize
- Publish
- Reject
- RevertToPublished
- ScheduleForPublish
- SelectDisplayOption
- SendForReview
- StartWorkflow
- Withdraw
- WorkflowTask
commandproviders
ContentActionSupport
editors
model
CollectionEditorModel
- CollectionEditorItemModel
- _AddItemDialogMixin
- _BlockTreeNode
- _ClipboardPasteMixin
- _ContentAreaTree
- _ContentAreaTreeModel
- _ContentAreaTreeNodeMixin
- _GroupTreeNode
- _PreviewableEditor
- _TextWithActionLinksMixin
- CheckBoxListEditor
- CollectionEditor
- ContentAreaEditor
- ContentBlockEditor
- ContentBlockEditorViewModel
- ContentEditableEditor
- DefaultGridAssembler
- DialogWithCheckBoxListEditor
- DialogWithCheckBoxListEditorViewModel
- ItemCollectionEditor
- PreviewableDateTimeEditor
- PreviewableTextEditor
- SelectionEditor
- ShortcutEditor
- TinyMCEEditor
- TinyMCEInlineEditor
PageShortcutTypeSupport
viewmodel
- _ContainerViewModel
- _ContentViewModelObserver
- _ViewModelMixin
- CollectionItemModel
- ContentAreaViewModel
- ContentBlockViewModel
- ContentDetailsViewModel
- CreateContentViewModel
- CreateLanguageBranchViewModel
- EditActionPanelViewModel
- ExpirationDialogViewModel
- ItemCollectionViewModel
- LinkItemModel
- PersonalizedGroupViewModel
- PublishMenuViewModel
- ShortcutDialogViewModel
viewsettings
- _ContentEditingNotification
- _ContextualContentContextMixin
- _EditorWrapperBase
- _FloatingComponentEditorWrapperMixin
- _FormEditingMixin
- _HasFloatingComponent
- _Renderer
- _ValidationMixin
- _View
- _ViewSetting
- AutoSaveButton
- ClientRenderer
- ContentDetails
- ContentEditableWrapper
- ContentEditingValidator
- ContentModelServerSync
- ContentPreview
- ContentReferencesNotification
- ContentViewModel
- CreateContent
- CreateLanguageBranch
- DateTimeNowEditor
- DialogEditorWrapper
- EditActionPanel
- EditingBase
- EditorFactory
- EditToolbar
- ExpirationDialog
- ExpirationNotification
- FloatingComponentHandler
- FloatingEditorWrapper
- FlyoutEditorWrapper
- FormEditing
- InlineEditorWrapper
- InUseNotificationManager
- LanguageNotification
- MappingManager
- NewContentNameInputDialog
- NotificationBar
- OnPageEditing
- Operation
- OverlayBasedEditorWrapper
- PageDataController
- PropertyRenderer
- PropertyXhtmlRenderer
- PseudoContextualCommandDecorator
- PublishMenu
- RenderManager
- RichTextInlineEditorWrapper
- ScheduledPublishSelector
- ScheduledPublishSelectorViewModel
- SettingsPanel
- ShortcutDialog
- ShortcutNotification
- SideBySideEditorWrapper
- StandardToolbar
- UpdateController
- ValidationTextboxWithWarning
- ViewSettingsManager
- ViewSettingsNotification
- WorkflowTaskNotification
conversion
core
dgrid
extension
form
layers
layout
legacy
store
widget
command
overlay
sharedContentDialogHandler
UploadUtil
viewmodel
- _CategoryTreeNode
- _ConfigurableContentListBase
- _ContentListBase
- _ContentListKeyMixin
- _ContentListMouseMixin
- _ContentTreeNode
- _ContentTreeNodeMixin
- _DndStateMixin
- _DropDownWidgetItemMixin
- _Droppable
- _FolderTreeNode
- _GridWidgetBase
- _HasChildDialogMixin
- _HasClearButton
- _HierarchicalModelMixin
- _HyperLinkFieldItem
- _ItemSelectorBase
- _LegacySelectorBase
- _SelectorBase
- _UserResizable
- Breadcrumb
- BreadcrumbCurrentItem
- CategorySelector
- CategorySelectorDialog
- CategoryTree
- CategoryTreeStoreModel
- ChannelsButton
- ChannelSelector
- ContentForestStoreModel
- ContentList
- ContentListing
- ContentReferences
- ContentSearchBox
- ContentSelector
- ContentSelectorDialog
- ContentTree
- ContentTreeModelConfirmation
- ContentTreeStoreModel
- ContentType
- ContentTypeGroup
- ContentTypeList
- ContextualContentForestStoreModel
- CreateCommandsMixin
- DisplayOptionSelector
- EmptyTrashMenu
- FileList
- FilesUploadDropZone
- FolderTree
- HierarchicalList
- HyperLinkSelector
- IFrameController
- LinkEditor
- MultipleFileUpload
- MultipleFileUploadConfirmation
- NotificationStatusBar
- NotificationStatusZone
- PersonalizationSelector
- PropertiesForm
- ReadOnlyContentList
- ReadOnlyDateTimeEditor
- ResolutionSelector
- SearchBox
- SearchResultList
- SelectorMenuBase
- TooltipDialog
- Trash
- TrashItemList
- TrashViewModelConfirmation
- UrlContentSelector
- UrlSelector
- ViewLanguageButton
- ViewLanguageSelector
- ViewSelector
- ViewSelectorDropDownButton
- ViewSettingsExpandoButton
- VisitorGroupButton
- VisitorGroupsSelector
- XFormEditor
- XFormPropertyWidget
- _ContentContextMixin
- _MultilingualMixin
- ApplicationSettings
- BackContextHistory
- CMSModule
- ContentLanguageHelper
- ContextSynchronizer
- ErrorDialog
- Profile

_CommandWithDialogMixin
Summary
The base class for all edit commands wanna use dialog as an editor.
Description
That supports: - Create a dialog - Interface to update value
Location
epi-cms/contentediting/command/_CommandWithDialogMixin
_dialog
cancelActionText
Label to be displayed for the cancel (negative) action.
confirmActionText
Label to be displayed for the confirm (positive) action.
defaultActionsVisible
.Flag which indicates whether the default confirm and cancel actions should be visible. This can only be set in the constructor.
destroyOnHide
Destroy dialog on hide or not.
dialogClass
The css class for dialog. Default value is "epi-dialog-portrait".
dialogContent
The instance of dialogContentClass will be stored by this prop.
dialogContentClass
The widget class that will be created and placed as dialog's content
dialogContentParams
The parameters for create new instance of dialogContentClass.
dialogParams
The parameters for create new instance of dialog.
module
"epi-cms/contentediting/command/_CommandWithDialogMixin"
res
Json language resouce object used to get default title when insert/edit item.
title
The dialog's title.
value
The value of item that being edited.
onDialogCancel ( )
Process value when dialog after it's hidden. It should be implemented from delivery
onDialogExecute ( )
Process value returned from dialog after it's executed. It should be implemented from delivery