-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrapping a reactabular row with an HOC/Context #360
Comments
Did you notice the Could you set up a small example of what you have together so far? |
Here are the related docs: https://reactabular.js.org/#/table/overriding-default-renderers . |
Its looks like using the Table.Provider const RowWrapper = props => (<tr>...</tr>); <Table.Provider
columns={...}
renderers={{
body: {
row: RowWrapper
}
}}
>
...
<Table.Provider /> The thing is that the Close, but no cigar (yet). |
@dannyhuly I'm working on a small re-design (separate branch) but I haven't gotten around to finishing it yet as I've been too busy with paid work (I do this one for free so it progresses slowly). Likely finishing that might help in this particular case as it makes the library more flexible. |
Hi,
Is possible to wrap a row with a HOC or Context ?
I would like to implement a table row edit (not cell by cell edit) but i'm unable to use informed or Formik to wrap a reactabular row with a form control logic.
Is there a way to manipulate a row or is the API only allows cell manipulation ?
Any ideas ?
Thanks.
The text was updated successfully, but these errors were encountered: