Class IgbEditorCellInfo
Represents info about the current cell.
Inheritance
System.Object
IgbEditorCellInfo
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbEditorCellInfo : IgbCellInfo, JsonSerializable
Constructors
IgbEditorCellInfo()
Declaration
public IgbEditorCellInfo()
Properties
DataType
Gets or sets the data type associated with the cell being edited.
Declaration
public DataSourceSchemaPropertyType DataType { get; set; }
Property Value
Declaration
public string DateFormatString { get; set; }
Property Value
| Type |
Description |
| System.String |
|
EditorDataSource
Gets or sets the data source to use for the editor where it makes sense.
Declaration
public object EditorDataSource { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
EditorDataSourceScript
Provides a means of setting EditorDataSource in the JavaScript environment.
Declaration
public string EditorDataSourceScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
EditorTextField
Gets or sets the editors display member.
Declaration
public string EditorTextField { get; set; }
Property Value
| Type |
Description |
| System.String |
|
EditorType
Gets or sets the type of editor to use while cell editing.
Declaration
public EditorType EditorType { get; set; }
Property Value
EditorValueField
Gets or sets the editors value member.
Declaration
public string[] EditorValueField { get; set; }
Property Value
| Type |
Description |
| System.String[] |
|
EditTarget
Gets or sets the edit target for this cell.
Declaration
public IgbCellInfo EditTarget { get; set; }
Property Value
EditValue
Gets or sets the user selected value.
Declaration
public object EditValue { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
EditValueScript
Provides a means of setting EditValue in the JavaScript environment.
Declaration
public string EditValueScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ErrorMessage
Gets or sets the error message to display in the editor cell.
Declaration
public string ErrorMessage { get; set; }
Property Value
| Type |
Description |
| System.String |
|
IsHidden
Gets whether the editor cell is hidden or not.
Declaration
public bool IsHidden { get; protected set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Declaration
public bool ShowTodayButton { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
TargetColumn
Gets the column index that the editor cell is targeting for edit.
Declaration
public int TargetColumn { get; protected set; }
Property Value
| Type |
Description |
| System.Int32 |
|
TargetRow
Gets the row index that the editor cell is targeting for edit.
Declaration
public int TargetRow { get; protected set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements