jQWidgets Forums
Forum Replies Created
-
Author
-
December 28, 2013 at 8:33 am in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47031
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.December 28, 2013 at 8:27 am in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47030Yes 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>
December 27, 2013 at 5:59 pm in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47025ok. Just fix this bug please )
December 27, 2013 at 4:40 pm in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47018tooltip 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”) ?
December 27, 2013 at 2:00 pm in reply to: jqxchart inside jqxwindow jqxchart inside jqxwindow #47009Hello. 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?
October 25, 2013 at 9:32 pm in reply to: jqxMenu pollutes global DOM jqxMenu pollutes global DOM #31357if 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.October 25, 2013 at 3:34 pm in reply to: jqxMenu pollutes global DOM jqxMenu pollutes global DOM #31341Hello 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. -
AuthorPosts