Displaying 1:n Data in Grid

This is an archived post from the ExtJS era — the code may be obsolete, but the principles often still apply.

Code in this post can be obsolete, however, principles and theory may still apply.

The Problem

Imagine that you have a one-to-many relationship in your database, for example, you have table person in which you keep personal data (first, middle, last names, etc.) and you have table phone where you keep phone numbers (phone type, phone number). It is quite common to have person:phones, company:phones, order:items, invoice:items, etc relationships, isn't it? Now, it is quite easy to create a grid that displays list of persons but what about their phones? They are in the different table. Yes, we could create two stores: one for persons grid and another, hidden, for phones, load them from server and somehow filter phones depending on persons. Nevertheless, I was looking for a simpler solution as I wanted one client server round trip and I wanted to display "many" data in QuickTip. And I found one...

Solution - Server Side

MySql, that I use as my main database backend, has function group_concat since version 4.1 and SQLite has it since version 3.5. The idea is to join tables person and phone server side and return "many" data in one extra field as string separated by arbitrary separators. The SQL statement would be as follows:

phones part of the output of the above sql would look like

Solution - Client Side

We cannot display received phones directly in person grid (well we could but users would hate us) but we need some processing. I decided to display phones in QuickTips so I needed custom renderer for persLastName:

' + val + '

and getPhones function:

A bit of XTemplate work for QuickTips and we're done.

Conclusion

This is not full fledged one-to-many data handling with editing, adding and deleting items at "many" side, it is just simple display of data from "many" table, anyway, it can come handy sometimes. The working example that accompanied this post is no longer online. The "many" display target does not need to be QuickTip, it can be row expander as well.

9 comments

  1. LobosMay 14, 2008archive
    Wow I had never heard of group_concat, so I have learned something new today! Thanks for the great article!
  2. mjlecomteMay 16, 2008archive
    Saki, if you don't mind, a database question. Do you use your application or the database to enforce relationships between tables? Meaning if you have mysql tables that would have foreign keys in other tables, etc. do you let the database handle the on cascade stuff to enforce the table relations when records are added/deleted, or do you enforce this with your application/php logic? I'm not sure which way to go with this and wanted your wisdom on the matter. MJ.
  3. SakiMay 16, 2008archive
    Yes MJ, I use relationships of InnoDB Engine of mySQL. I always use ON UPDATE CASCADE and selectively, when appropriate, ON DELETE CASCADE. Of course, PHP and/or Ext have to take into account these relationships, e.g. Ext has to supply parent ID when updating child record but mySQL takes additional care about data integrity. Cheers, Saki
  4. JeffMay 17, 2008archive
    Hi Saki, Nice work. I was wondering if you have ever used Perl with EXTJS? The work that I do does not allow me to use PHP. Although I do use it for other projects. I am interested in seeing some examples of how Perl could be used with EXTJS in conjunction with JSON. Any thoughts?
  5. SakiMay 17, 2008archive
    Hi Jeff, no I don't use Perl but I think that it wouldn't be too different. I believe that there has to be some good JSON encode/decode in Perl so it boils down to find one. I would first search rpms of your distribution (assuming you are using Linux on your server) and second, I would google for it. Cheers, Saki
  6. JamesSeptember 3, 2008archive
    Hi, Saki, Cool, but i found a question. It will display "[object Object]" when sort columns. Is it a bug? What do you think?
  7. SakiSeptember 15, 2008archive
    @James, it seem to be, however, it doesn't invalidate the idea. Just some more logic is needed.
  8. VikasNovember 4, 2011archive
    Hi Saki, I have to implement this with extjs 4.0.2 but couldnt found the code working with it. Can you please suggest if any more changes need to be done. Thanks, Vikas Kapoor
  9. Chandrakanth BairyAugust 29, 2012archive
    Hi Saki, I am new to ExtJs. I am trying to build a treepanel where my store uses a json file for data. Json file goes like this, { "data": [ { "id": "1", "title": "All", }, { "id": "2", "title": "Actors/Actresses", }, { "id": "3", "parentId": "2", "leaf": true, "title": "Actors" }, { "id": "4", "parentId": "2", "leaf": true, "title": "Actresses" }, { "id": "9", "title": "Favorites" }, { "id": "10", "parentId": "9", "leaf": true, "title": "Favorite Actors" }, { "id": "12", "parentId": "9", "leaf": true, "title": "Favorite Actresses" }, { "id": "21", "title": "Cast By" }, { "id": "22.94", "parentId": "21", "title": "Administrators" }, { "id": "23.94.4", "parentId": "22.94", "userTitle": { "id": 4, "firstName": "Chan", "lastName": "Bairy", "email": "chandrakanth.bairy@gmail.com", "jobTitle": "Dev" } } ] } Since, this json file is flat, I am not able to get the children in the tree. Any suggestion please?

Comments are closed on archived posts.