jQWidgets Forums

jQuery UI Widgets Forums Grid Group header font style as Normal

This topic contains 3 replies, has 2 voices, and was last updated by  Dimitar 11 years, 3 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • Group header font style as Normal #50146

    viji
    Participant

    Hi,
    How to make the Group header(Drag a column and drop it here to group by that column) font weight alone as normal but not the column headers.

    Thanks,
    Viji

    Group header font style as Normal #50157

    Dimitar
    Participant

    Hello Viji,

    You can modify the appearance of group headers by setting the property groupcolumnrenderer.

    Best Regards,
    Dimitar

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

    Group header font style as Normal #50161

    viji
    Participant

    Hi Dimitar,

    It changes the appearance of group headers but this text ‘Drag a column and drop it here to group by that column’ style is not changing.

    Thanks,
    Viji

    Group header font style as Normal #50204

    Dimitar
    Participant

    Hi Viji,

    Here is how to access this label:

    $("#jqxgrid").jqxGrid(
    {
        width: 600,
        source: dataAdapter,
        groupable: true,
        columns: [
            { text: 'Company Name', datafield: 'CompanyName', width: 250 },
            { text: 'City', datafield: 'City', width: 120 },
            { text: 'Country', datafield: 'Country' }
        ],
        ready: function () {
            $("#jqxgrid .jqx-grid-groups-header div:first div:first").css("font-weight", "bold");
        }
    });

    Best Regards,
    Dimitar

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

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

You must be logged in to reply to this topic.