jQWidgets Forums

jQuery UI Widgets Forums Grid Statusbar – delimiting line

This topic contains 2 replies, has 2 voices, and was last updated by  badera 10 years, 6 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Statusbar – delimiting line #64216

    badera
    Participant

    Dear all

    What is the correct way to have a line displayed abouve the statusbar – the same solid line as we have between rows.
    Thanks in advance!
    badera

    Statusbar – delimiting line #64233

    Nadezhda
    Participant

    Hello badera,

    You can try with the following code $(".jqx-grid-statusbar").children().css("border-bottom", "solid 2px #adac97");. If it does not help you resolve your issue, please provide us with a JSFiddle example.

    Best Regards,
    Nadezhda

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

    Statusbar – delimiting line #64249

    badera
    Participant

    Thanks Nadezhda.

    However, it did not work. Instead, I placed now a <div> in the statusbar, which has your style as “border-top”, and this works as I wished:

                       ...
                        statusbarheight: 25,
                        renderstatusbar: function (statusbar) {
                            statusbar.append($('<div class="div-grid-statusbar"><b>My Text</b></div>'));
                        }

    div-grid-statusbar:

    .div-grid-statusbar
    {
        height: 25px;
        line-height: 25px;
        padding-left: 5px;
        border-top: solid 1px #adac97;
    }
Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.