jQWidgets Forums
Forum Replies Created
-
Author
-
November 15, 2012 at 4:54 pm in reply to: Very slow with many Chart PIE on the same page Very slow with many Chart PIE on the same page #11061
Thank’s Peter,
but I have many ‘DIV’ with different ID like … jqxChart1, jqxChart2, jqxChart3, jqxChart4, etc …
Exemple:
myChart9999.jqxChart(‘colorScheme’, ‘myScheme9999′);
9999 is equal to the ID of the scheme.
November 12, 2012 at 7:24 pm in reply to: Very slow with many Chart PIE on the same page Very slow with many Chart PIE on the same page #10916Portion of html code does not appear on the post. In summary, I make a loop with the loop inside the script and div. It works very well except that it is very long when there are 4 or 5 more divs.
<div id='host<%=loopgraph%>' style="margin: 0px; margin-bottom:10px; padding:0px; width: 100px; height: 140px; float:left; cursor:pointer;" onclick="parent.popupps('jqwidgets/dashboard_support_pop.asp?iprocessus=<%=processusasker%>&iprocsupport=<%=loopgraph%>','Support aux processus','0','800','500')"> <div id='jqxChart<%=loopgraph%>' style="width:95px; height: 140px; position: relative; left: 0px;top: 0px;"></div> </div>
November 12, 2012 at 7:19 pm in reply to: Very slow with many Chart PIE on the same page Very slow with many Chart PIE on the same page #10914here the HTML with div
Thank’s for the fast post.
I use your code and it work perfecly .. how to use with ASP Classic (asp 3.0) ?
sql=”SELECT * FROM mytable;”
Set objConn= Server.CreateObject(“ADODB.Connection”)
Set objRec= Server.CreateObject(“ADODB.Recordset”)
objConn.Open strConnect
objRec.Open sql, objConn,0,1,1
While Not objRec.EOFobjRec.movenext
wend
objRec.Close
objConn.close
Set objRec=nothing
Set objConn=nothing -
AuthorPosts