-
Notifications
You must be signed in to change notification settings - Fork 13
Description
Hi there,
Love the datatable concept. One thing that I am currently missing is the ability to update master/superset table while working with data in subset.
An example is:
Master table:
timestamp, portfolio_id, portfolio_group, amount
Subset table:
- the same columns
- records filtered using subset := master.Where ... timestamp & portfolio_group
I do some more complex operations on the subset and record results for it in the subset.
Now I need to propagate it to the master table.
So, it would be great to know the row index of the row or that the row subset would be a collection of pointers and would update the master directly when doing subset.Update ...
Or maybe I am missing something. I am not that proficient in Golang yet and there is very little documentation and even less can be found on the net.
Thanks for the great tool and hope that you can help me.