Table of Contents

Interface ITableRowContext

Namespace
Htmx.Components.Table.Models
Assembly
Htmx.Components.dll

Represents the context for a table row, providing access to row data and metadata.

public interface ITableRowContext : IOobTargetable
Inherited Members
Extension Methods

Properties

IsEditing

Gets a value indicating whether this row is currently in edit mode.

bool IsEditing { get; }

Property Value

bool

Item

Gets the data item associated with this row.

object Item { get; }

Property Value

object

Key

Gets the string representation of the row's key.

string Key { get; }

Property Value

string

PageIndex

Gets the row's index within the current page.

int PageIndex { get; }

Property Value

int

RowId

Gets the unique identifier for this row (e.g., "row_5f3e").

string RowId { get; }

Property Value

string