jQuery UI Widgets Forums Grid Set Grouping Description

This topic contains 2 replies, has 2 voices, and was last updated by  Wherever66 8 years, 9 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Set Grouping Description #82163

    Wherever66
    Participant

    Hi

    Is it possible to change the description on grouping header – “Drag a column and drop it here to group by that column”?

    Set Grouping Description #82179

    Dimitar
    Participant

    Hi Wherever66,

    You can achieve this with the grid’s localization functionality, e.g.:

    $("#jqxgrid").jqxGrid(
    {
        width: 850,
        source: dataAdapter,
        groupable: true,
        columns: [
            { text: 'Company Name', datafield: 'CompanyName', width: 250 },
            { text: 'City', datafield: 'City', width: 120 },
            { text: 'Country', datafield: 'Country' }
        ],
        localization: { groupsheaderstring: 'Custom description' }
    });

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Set Grouping Description #82190

    Wherever66
    Participant

    Working Perfectly! Thx.

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

You must be logged in to reply to this topic.