jQuery UI Widgets Forums Grid Theme in jqxPivotGrid (bug?)

Tagged: ,

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

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Theme in jqxPivotGrid (bug?) #96700

    ewoudwijma
    Participant

    When I create a jqxPivotGrid with a theme, I get an error if the pivotgrid is refreshed. After some debugging I workaround/solved it in the jqxPivotGrid.js file as follows:
    – find the code starting with if(c==”theme”)
    – replace hostVScrollBar with hostVScroll and hostHScrollBar with hostHScroll
    – add if (hostVScrollBar) around the jqxScrollBar calls to be sure it is only called if exists

    Result is
    if(c==”theme”)
    {
    if (this.hostVScroll)
    this.hostVScroll.jqxScrollBar(“theme”,this.theme);
    if (this.hostHScroll)
    this.hostHScroll.jqxScrollBar(“theme”,this.theme)
    }

    This solved the error for me
    @JQWidget team, can you please check if this is indeed the solution and if so add this in future version.

    Thx,
    Ewoud

    Theme in jqxPivotGrid (bug?) #96718

    Peter Stoev
    Keymaster

    Hi Ewoud,

    We do not see an issue with setting a theme of a Pivot Grid in our online samples.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

    Theme in jqxPivotGrid (bug?) #96792

    ewoudwijma
    Participant

    Hi Peter, Thx for your comment. I will create a jsfiddle.net to show it. I will do it in about 4 weeks as I will be offline until then.

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

You must be logged in to reply to this topic.