useBindableCell
The useBindableCell hook returns a reactive object reflecting the value of a Cell, with a settable current property that writes back to the Store.
useBindableCell(
tableId: MaybeGetter<string>,
rowId: MaybeGetter<string>,
cellId: MaybeGetter<string>,
storeOrStoreId?: MaybeGetter<undefined | StoreOrStoreId>,
): {current: CellOrUndefined}| Type | Description | |
|---|---|---|
tableId | MaybeGetter<string> | |
rowId | MaybeGetter<string> | |
cellId | MaybeGetter<string> | |
storeOrStoreId? | MaybeGetter<undefined | StoreOrStoreId> | |
| returns | {current: CellOrUndefined} | A reactive object with gettable and settable |
Since
v8.1.0