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
Is your feature request related to a problem? Please describe:
The current implementation of Table likens itself to the data type [][]string
At the moment, I must update my slices then call .Refresh() manually on the Table.
Is it possible to construct a solution with the existing API?
Compatible, but new binding type.
Describe the solution you'd like to see:
Now that we have data binding and binding.StringList (essentially a []string) -- why not have a binding.StringListList which internally represents a [][]string for use with Tables and other 2D data.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe:
The current implementation of
Table
likens itself to the data type[][]string
At the moment, I must update my slices then call
.Refresh()
manually on the Table.Is it possible to construct a solution with the existing API?
Compatible, but new binding type.
Describe the solution you'd like to see:
Now that we have data binding and
binding.StringList
(essentially a[]string
) -- why not have abinding.StringListList
which internally represents a[][]string
for use with Tables and other 2D data.The text was updated successfully, but these errors were encountered: