You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to have a method to repair rows when using columns.
Motivation
In my case some rows have one or two columns more than the rest and I can repair the row by shifting the content two cells to the left at a specific point.
However, when using columns, the record argument passed to on_record does not contain the values defined outside of the columns range.
Draft
A simple solution is providing access to the original row data as array in the context argument of on_record.
Having access to columns definitions and original row data inside on_record will enable the programmer to rebuild the record
The text was updated successfully, but these errors were encountered:
Summary
It would be useful to have a method to repair rows when using columns.
Motivation
In my case some rows have one or two columns more than the rest and I can repair the row by shifting the content two cells to the left at a specific point.
However, when using columns, the
record
argument passed toon_record
does not contain the values defined outside of the columns range.Draft
A simple solution is providing access to the original row data as array in the
context
argument ofon_record
.Having access to columns definitions and original row data inside
on_record
will enable the programmer to rebuild the recordThe text was updated successfully, but these errors were encountered: