oyarzou / clicl

Automatically exported from code.google.com/p/clicl
Other
0 stars 0 forks source link

Weblog: Tables Enhancement #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
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 roxydan...@gmail.com on 29 Sep 2012 at 9:25