Editor defines a generic model for a CRUD web editor including the data model and aditional properties.
Default constructor
public Void Editor()
Initializes a new instance of Editor.
public Void Editor(domainModel)
Name | Type | Summary |
---|---|---|
domainModel | T | The domain model object to be edited. |
List of items that conforms the breadcrumd.
public BreadcrumbItemCollection Breadcrumb { get; set; }
List of commands for the context.
public MvcButtonCollection ContextCommands { get; set; }
Gets or sets the domain model object.
public T DomainModel { get; set; }
Gets or sets a list of named options for dropdown elements.
public Dictionary DropdownOptions { get; set; }
Gets or sets an context related exception.
public Exception Exception { get; set; }
Localized header.
public String Header { get; set; }
A list of parent object for this editor.
public List<Object> Parents { get; set; }
Gets or sets the user currently selected model ID.
public Object SelectedID { get; set; }
Gets or sets the status message to show to the user.
public StatusMessage StatusMessage { get; set; }