Class GanttEditOptions
Specifies the editSettings options in gantt.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class GanttEditOptions : EJTagHelper
Constructors
GanttEditOptions()
Declaration
public GanttEditOptions()
Properties
AllowAdding
Enables or disables add record icon in gantt toolbar
Declaration
[JsonProperty("allowAdding")]
public bool AllowAdding { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
AllowDeleting
Enables or disables delete icon in gantt toolbar
Declaration
[JsonProperty("allowDeleting")]
public bool AllowDeleting { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
AllowEditing
Specifies the option for enabling or disabling editing in gantt grid part
Declaration
[JsonProperty("allowEditing")]
public bool AllowEditing { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
AllowIndent
Enables or disables the indent option
Declaration
[JsonProperty("allowIndent")]
public bool AllowIndent { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
BeginEditAction
Specifies the edit action in gantt , “click” is for editing on single click, ”dblclick” is for editing on double click
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("beginEditAction")]
public GanttBeginEditAction BeginEditAction { get; set; }
Property Value
Type | Description |
---|---|
GanttBeginEditAction |
EditMode
Specifies the editmode in gantt , “normal” is for dialog editing ,”cellEditing” is for cell type editing
Declaration
[JsonProperty("editMode")]
public string EditMode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RowPosition
Specifies the new row add position.
Declaration
[JsonProperty("rowPosition")]
[JsonConverter(typeof(StringEnumConverter))]
public GanttRowPosition RowPosition { get; set; }
Property Value
Type | Description |
---|---|
GanttRowPosition |
ShowDeleteConfirmDialog
Enables or disables the delete confirmation dialog.
Declaration
[JsonProperty("showDeleteConfirmDialog")]
public bool ShowDeleteConfirmDialog { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |