jQWidgets Forums

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Hi Peter,

    Thanks for your answer. That’s exactly the functionality I’m looking for.
    Could you guide me to try implementing it myself? It’s very important to me.

    I was thinkin about bind a “groupschanged” event to identify the columns that are being grouped, and then hide them using the “hidecolumn” method, then try to increase the colspan of the previous column, something like that.

    Could you tell me if you think it’s possible? I’ll give it a go.

    Thank you!

    I was looking for this too. Thanks!

    It is possible to hide columns that are grouped?
    Something like:


    $("#jqxgrid").jqxGrid(
    {
    width: 600,
    source: source,
    groupable: true,
    theme: theme,
    columns: [
    { text: 'Company Name', datafield: 'CompanyName', width: 250 },
    { text: 'City', datafield: 'City', width: 120 },
    { text: 'Country', datafield: 'Country' }
    ],
    groups: ['Country'],
    hidegroupedcolumns: true
    });

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