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
Item
Gets the data item associated with this row.
object Item { get; }
Property Value
Key
Gets the string representation of the row's key.
string Key { get; }
Property Value
PageIndex
Gets the row's index within the current page.
int PageIndex { get; }
Property Value
RowId
Gets the unique identifier for this row (e.g., "row_5f3e").
string RowId { get; }