jQWidgets Forums

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47031

    adron
    Participant

    And if i modifying jqxchart.js source by adding:
    s.style.zIndex = 999999;
    where s is a dynamically created div = ‘<div style=”position: absolute; cursor: default; overflow: hidden; background-color: rgb(255, 255, 255); border-color: rgb(43, 113, 194); display: none; left: 385.5px; top: 387.5px; opacity: 1;”>’
    all works fine !
    So I ask you in the next release make these changes in the jqxchart.hs source.
    Thanks a lot.

    in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47030

    adron
    Participant

    Yes i try to define CSS style:
    .jqx-chart-tooltip-text{
    z-index:99999;
    }
    but it not help ! because it sets z-index to <span class=”jqx-chart-tooltip-text”> but we need to set z-index to span’s parent(div style=”position: absolute…) which is created dynamicly and has no classes !

    
    <div style="position: absolute; cursor: default; overflow: hidden; background-color: rgb(255, 255, 255); border-color: rgb(43, 113, 194); display: none; left: 385.5px; top: 387.5px; opacity: 1;"> <---- we must set z-index:99999 to this div but how? 
      <span class="jqx-chart-tooltip-text">ch1, 0: 100</span>  <---- z-index == 99999 !
    </div>
    
    in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47025

    adron
    Participant

    ok. Just fix this bug please )

    in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47018

    adron
    Participant

    tooltip at the chart points.
    code for this tooltip is created dynamically when I first rolls the mouse over any point of the graph:

    <div class="jqx-rc-all jqx-button" style="position: absolute; cursor: default; overflow: hidden; background-color: rgb(255, 255, 255); border-color: rgb(43, 113, 194); display: none; left: 385.5px; top: 387.5px; opacity: 1;">
      <span class="jqx-chart-tooltip-text">
        ch1, 0: 100
      </span>
    </div>

    How can i set z-index:99999 for first div $(“.jqx-rc-all .jqx-button”) ?

    in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47009

    adron
    Participant

    Hello. I try to use JqxChart inside JqxWindow. All works fine but tooltips are not visible because jqxwindow z-index == 18000 and at tooltips div z-index == 0. How can I solve this problem?

    in reply to: jqxMenu pollutes global DOM jqxMenu pollutes global DOM #31357

    adron
    Participant

    if i do $(“#jqxgrid”).jqxGrid(“updatebounddata”) instead of $(“#jqxgrid”).jqxGrid(“source”).dataBind() i have the same problem with the extra divs.
    And if then i do $(“#jqxgrid”).jqxGrid(“destroy”) – all extra DIVS will continue to exist.

    in reply to: jqxMenu pollutes global DOM jqxMenu pollutes global DOM #31341

    adron
    Participant

    Hello guys. I confirm this bug !
    it shows in sortable jqxgrid.

    If in dataAdapter i have something like this:
    var source ={localdata: data, datatype: “array”, …
    $(“#jqxgrid”).jqxGrid({sortable: true, source: dataAdapter, …
    and then if i do dataAdapter.dataBind(); i have many empty divs in html body:

    each time when i do dataAdapter.dataBind() i have +1 empty div !

    It seems that bug in jqxgrid.js and function initmenu. code this.gridmenu.jqxMenu(“destroy”); does not call jqxmenu.js function destroy.

    As example you can open http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/sorting.htm?arctic
    and then in js console do $(“#jqxgrid”).jqxGrid(“source”).dataBind();
    Each time you run this command will add another empty div.

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