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
When getting a list of items and displaying them with a table, the current
implementation is such that one table is built for every attribute of the item.
Let's say I pick from the db 2 items:
Item0(id=0,title=item0)
Item1(id=1,title=item1)
If I create a table based on the item schema, the result will be:
- a table for the id field
ID = [0,1]
- a table for the title field
TABLE = [item0, item1}
The tables should be merged in a single table instead.
Original issue reported on code.google.com by [email protected] on 29 Sep 2012 at 9:25
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 29 Sep 2012 at 9:25The text was updated successfully, but these errors were encountered: