Displaying 1:n Data in Grid

11. May 2008 – 19:13

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:

SELECT 
    persFirstName, persMidName, persLastName,
    group_concat(concat_ws('~', phoneType, phoneNumber), '|') AS phones
FROM person
    LEFT JOIN phone ON person.persID=phone.persIDs
GROUP BY person.persID

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

Home~123456|Work~87654|Mobile~654321

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:

/**
 * Last Name rederer including tooltip with phones
 * @param {Mixed} val Value to render
 * @param {Object} cell
 * @param {Ext.data.Record} record
 */
,renderLastName:function(val, cell, record) {
 
    // get data
    var data = record.data;
 
    // convert phones to array (only once)
    data.phones = 
        Ext.isArray(data.phones) ? data.phones : this.getPhones(data.phones);
 
    // create tooltip
    var qtip = this.qtipTpl.apply(data.phones);
 
    // return markup
    return '<div qtip="' + qtip +'">' + val + '</div>';
} // eo function renderLastName

and getPhones function:

/**
 * Converts string phones to array of objects
 * @param {String} phones
 * @return {Array} Array of phone objects
 */
,getPhones:function(phones) {
 
    // empty array if nothing to do
    if(!phones) {
        return [];
    }
 
    // init return value
    var retval = [];
 
    // split string to phones
    var aps = phones.split('|');
 
    // iterate through phones to extract phoneType and phoneNumber
    Ext.each(aps, function(phone) {
        var a = phone.split('~');
        retval.push({phoneType:a[0], phoneNumber:a[1]});
    });
 
    return retval;
} // eo function getPhones

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.

You can see the working example here: http://examples.extjs.eu

The “many” display target does not need to be QuickTip, it can be row expander as well.


StumbleUpon Toolbar
  1. 8 Responses to “Displaying 1:n Data in Grid”

  2. Wow I had never heard of group_concat, so I have learned something new today! Thanks for the great article!

    By Lobos on May 14, 2008

  3. 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.

    By mjlecomte on May 16, 2008

  4. 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

    By Saki on May 16, 2008

  5. 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?

    By Jeff on May 17, 2008

  6. 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

    By Saki on May 17, 2008

  7. Hi, Saki,

    Cool, but i found a question. It will display “[object Object]” when sort columns. Is it a bug?
    What do you think?

    By James on Sep 3, 2008

  8. @James, it seem to be, however, it doesn’t invalidate the idea. Just some more logic is needed.

    By Saki on Sep 15, 2008

  9. 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

    By Vikas on Nov 4, 2011

Post a Comment