menu

MAUI

  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataGridUnboundCellRenderer - MAUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Class DataGridUnboundCellRenderer

    DataGridUnboundCellRenderer is a class for cell renderer that displays the unbound column value in a DataGridCell. The class provides strong typed override methods for initializing Content of the cell and arranging the cell visuals.

    Updates to appearance and Content of child elements, creation and unloading of views will not trigger layout or render calls in parent canvas.

    Inheritance
    System.Object
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>
    DataGridUnboundCellRenderer
    Implements
    IDataGridCellRenderer
    System.IDisposable
    Inherited Members
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.BeginEdit(RowColumnIndex, DataGridCell, DataGridColumn, Object)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.CanUpdateBinding(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.ClearRecycleBin()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.CommitCellValue(Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.CurrentCellElement
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.CurrentCellIndex
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.CurrentCellRendererElement
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.DataGrid
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.Dispose()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.Dispose(Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.EndEdit(DataColumnBase, Object, Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.GetControlValue()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.HasCurrentCellState
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.IsEditable
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.IsFocusable
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.IsInEditing
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnCreateDisplayUIView()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnCreateEditUIView()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnEnteredEditMode(DataColumnBase, View)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnInitializeDisplayView(DataColumnBase, SfDataGridLabel)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnInitializeEditView(DataColumnBase, SfDataGridEntry)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnPrepareViews(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnSetCellStyle(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnUnloadViews(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.OnUpdateCellValue(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.PrepareViews(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.RefreshDisplayValue(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.ResetCurrentCellState()
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.ResumeBinding(DataColumnBase, SfDataGridLabel)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SetCellStyle(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SetControlValue(Object)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SetCurrentCellState(RowColumnIndex, DataGridCell, Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SetFocus(Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SetFocus(View, Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SupportsRenderOptimization
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.SuspendBinding(DataColumnBase, SfDataGridLabel)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UnloadViews(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UnwireEditUIElement(SfDataGridEntry)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UpdateCellValue(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UpdateColumnInfo(DataColumnBase)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UpdateCurrentCellState(View, Boolean)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.UpdateEditViewCellStyle(DataColumnBase, SfDataGridEntry)
    DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>.WireEditUIElement(SfDataGridEntry)
    Namespace: Syncfusion.Maui.DataGrid
    Assembly: Syncfusion.Maui.DataGrid.dll
    Syntax
    public class DataGridUnboundCellRenderer : DataGridCellRenderer<SfDataGridLabel, SfDataGridEntry>, IDataGridCellRenderer, IDisposable

    Constructors

    DataGridUnboundCellRenderer()

    Initializes a new instance of the DataGridUnboundCellRenderer class.

    Declaration
    public DataGridUnboundCellRenderer()

    Methods

    CanUpdateBinding(DataColumnBase)

    Determines whether the binding for the column can be updated. Implement this method to update binding on particular renderer when the data context is set.

    Declaration
    public override bool CanUpdateBinding(DataColumnBase dataColumnBase)
    Parameters
    Type Name Description
    Syncfusion.Maui.DataGrid.DataColumnBase dataColumnBase

    The corresponding column for which the binding update should be determined.

    Returns
    Type Description
    System.Boolean

    True if the binding is updated for the column, otherwise false.

    Overrides
    Syncfusion.Maui.DataGrid.DataGridCellRenderer<Syncfusion.Maui.DataGrid.SfDataGridLabel, Syncfusion.Maui.DataGrid.SfDataGridEntry>.CanUpdateBinding(Syncfusion.Maui.DataGrid.DataColumnBase)

    OnCreateDisplayUIView()

    Creates a new SfDataGridLabel view and initializes it with the required properties.

    Declaration
    protected override SfDataGridLabel OnCreateDisplayUIView()
    Returns
    Type Description
    SfDataGridLabel

    A new SfDataGridLabel view.

    Overrides
    Syncfusion.Maui.DataGrid.DataGridCellRenderer<Syncfusion.Maui.DataGrid.SfDataGridLabel, Syncfusion.Maui.DataGrid.SfDataGridEntry>.OnCreateDisplayUIView()

    OnInitializeDisplayView(DataColumnBase, SfDataGridLabel)

    Initializes the column element of a Syncfusion.Maui.DataGrid.DataColumn object with the given SfDataGridLabel view and required values.

    Declaration
    protected override void OnInitializeDisplayView(DataColumnBase dataColumn, SfDataGridLabel view)
    Parameters
    Type Name Description
    Syncfusion.Maui.DataGrid.DataColumnBase dataColumn

    The dataColumn containing the details of the column.

    SfDataGridLabel view

    A SfDataGridLabel view object to be hosted inside the column element.

    Overrides
    Syncfusion.Maui.DataGrid.DataGridCellRenderer<Syncfusion.Maui.DataGrid.SfDataGridLabel, Syncfusion.Maui.DataGrid.SfDataGridEntry>.OnInitializeDisplayView(Syncfusion.Maui.DataGrid.DataColumnBase, Syncfusion.Maui.DataGrid.SfDataGridLabel)

    OnUpdateCellValue(DataColumnBase)

    Updates the cell value of the associated column.

    Declaration
    protected override void OnUpdateCellValue(DataColumnBase dataColumn)
    Parameters
    Type Name Description
    Syncfusion.Maui.DataGrid.DataColumnBase dataColumn

    The data column.

    Overrides
    Syncfusion.Maui.DataGrid.DataGridCellRenderer<Syncfusion.Maui.DataGrid.SfDataGridLabel, Syncfusion.Maui.DataGrid.SfDataGridEntry>.OnUpdateCellValue(Syncfusion.Maui.DataGrid.DataColumnBase)

    Implements

    IDataGridCellRenderer
    System.IDisposable
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved