jQWidgets Forums

jQuery UI Widgets Forums Grid Grid Grouping Question

This topic contains 7 replies, has 2 voices, and was last updated by  mocchi253 12 years, 8 months ago.

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
  • Grid Grouping Question #7285

    mocchi253
    Member

    [IMG]http://i590.photobucket.com/albums/ss349/mocchi253/Education/sub.png[/IMG]
    does this possible that add subtotal in group in grid

    [IMG]http://i590.photobucket.com/albums/ss349/mocchi253/Education/subt.png[/IMG]
    this is another subtotal of 2nd group and another subtotal for 1st group

    Grid Grouping Question #7286

    mocchi253
    Member


    does this possible that add subtotal in group in grid


    this is another subtotal of 2nd group and another subtotal for 1st group

    Grid Grouping Question #7293

    Peter Stoev
    Keymaster

    Hi mocchi253,

    jqxGrid does not have the requested functionality.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Grid Grouping Question #7312

    mocchi253
    Member

    oh thanks for the info, but can you suggest anything about my problem or other way

    Grid Grouping Question #7318

    Peter Stoev
    Keymaster

    Hi mocchi253,

    It is possible to change the group’s header i.e where it says Customer: Kevin(1). You can achieve that by using the groupsrenderer.

    Example:

    var groupsrenderer = function (text, group, expanded) {
    return "" + group + "";
    }
    $("#jqxgrid").jqxGrid(
    {
    source: source,
    groupsrenderer: groupsrenderer,
    columns: [
    { text: 'Ship Name', datafield: 'ShipName', width: 250 },
    { text: 'Ship City', datafield: 'ShipCity', width: 100 },
    { text: 'Ship Country', datafield: 'ShipCountry' }
    ],
    groupable: true,
    groups: ['ShipCity']
    });

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Grid Grouping Question #7321

    mocchi253
    Member

    I tried your suggest, thanks and just wondering is there code that can insert in certain row
    sample 1-10 row and then you gonna insert diferent data in row 5 so it will be total of 11row?

    Grid Grouping Question #7322

    Peter Stoev
    Keymaster

    Hi mocchi253,

    There’s no way to insert a row.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Grid Grouping Question #7328

    mocchi253
    Member

    Ok thanks for the help

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.