Refreshing A Fiji Chart?
May 2, 2011
Before anyone shoots me down I know this is not JSF forum I've been there and didn't get any joy at all, because the function I'm after is JavaScript so I wonder if anyone can help me please?
This function is for refreshing an Id called columnChartOne but unfortunately it doesn't work. This function is from Fiji demo page.
Code:
onclick="$('myForm:columnChartOne:component').update(); return false;"
How can I possibly rewrite this function as JavaScript function so it refreshes a column Id ?
View 3 Replies
ADVERTISEMENT
Jun 6, 2009
I have been searching high and low on how to do this and I think I'm at a loss because I'm so unfamiliar with js and ajax.What I would like to do is have just a single div on a page refresh every 5-10 secs; the content of the div shows what users are logged on; the content is generated by a query on my db
<div id="players"><?php
$online_query = "SELECT user_log.user_id,user_log.ip,user_log.logged_in,user_log.logged_out,users.username,users.type_id FROM user_log LEFT JOIN users ON user_log.user_id=users.id WHERE user_log.logged_in IS NOT NULL AND user_log.logged_out IS NULL ORDER BY users.username";[code]....
almost all of the google results I got for refreshing a div were for updating dropdown boxes or dealt with some kind of page event...so now I'm at a loss on what else to look for..
View 3 Replies
View Related
Nov 25, 2009
Is there a ways in javascript to create graphs chart? i can't seem to find a code on the Internet
View 5 Replies
View Related
Feb 24, 2010
i am building a web app that has a bunch of charts on it. they are essentially very basic flow charts that show relationships between two boxes.
now i have the divs printing out on the screen with no problems. but i have little idea on the best way to draw the arrows between the boxes.
my original thought was to place the images (as background images) in a span and then use server side code to determine the size of the span (length) and then absolutely position it. seems clunky.
then my next thought was to put the arrows and lines into SVG canvases and then use some sort of javascript to plot the two box points and draw the line. the question though is how to go about it? is there already a library or set of examples out there that does this sort of stuff? i had a google search, but couldnt come up with anything that was of use...
View 2 Replies
View Related
Jul 23, 2005
Whenever I try to call ...DataLabelsCollection.Add I get the error
"Invallid Parameter".
if((document.chsp.charts(0).Type==18) ||
(document.chsp.charts(0).Type==19) ||
(document.chsp.charts(0).Type==20) ||
(document.chsp.charts(0).Type==9001) ||
(document.chsp.charts(0).Type==9002))
{
var dls;
dls =
document.chsp.charts(0).SeriesCollection(1).DataLa belsCollection.Add();
dls.HasPercentage = 'True'
dls.HasValue = 'True'
}
View 4 Replies
View Related
Nov 10, 2011
i'm new to jQuery and SVG and my homerwork is to develope ECG chart. It should show data with: - 25mm/s - 50 mm/s - 1mm/mV - 5mm/mv I've decided to use Keith Wood jQuery plugin and have some questions. Is it possible to manipulate with gridlines when using graphing extension? I'd like every full second line to be thicker than the rest. Secondly, length on chart in every resolution should be equal to real length. Or should I make that chart step by step using drawing functions?
View 2 Replies
View Related
Oct 5, 2009
I am trying to populate a flot chart using PHP but things do not seem to be working. If I put in the numbers manually for the chart everything is working fine but if I pass them via ajax from a php script nothing displays.
Here is my php:
And here is my javascript:
The background of the chart appears but no data. I suspect that its because the json_encode returns a string.
View 2 Replies
View Related
May 25, 2011
Is there any plugin can draw radar graph?
View 2 Replies
View Related
Dec 14, 2011
Is there any organization chart(Hierarchy) available in jquery. like google org char? It should work in intranet.
View 1 Replies
View Related
Aug 3, 2009
I am using Flot its a graphing tool.I insert my flot graphing code into my main page which i do not want to show unless the user clicks a show graph button.The code is inserted into my hidden div like so:
Code:
<div class="widgetDIV" id="mydiv1">
<div id="placeholder" style="width:600px;height:300px;"></div>
<?[code]....
When the user clicks the "show graphs" link it changes the property of "mydiv1" to display='Block'.This is where the problems start.
Everything in the <Div> now appears except the chart. If i load the chart on its own it works fine and if i load the chart into a <div> that has its display properties starting off as 'Block' its also fine. The problem only occurs when i change the display property after the page is loaded.
View 2 Replies
View Related
Nov 8, 2011
I have this code that allows a select box change a price feild. it works fine however when i add something to the cart the select box still changes but the value (in the cart) does not.im thinking this is where i am going wrong it is not allow a new refresh
Code:
var pie = $(form).find('#boo').val();
This is what i'm trying to do but i get NAN
[code]....
View 5 Replies
View Related
Dec 8, 2010
I want to create piechart using dynamic content. (jqplot) Here i use static value. But i want to populate piechart for dynamic value.
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
[Code]....
View 8 Replies
View Related
Oct 20, 2010
I've been trying to find a topic talking about how to save a jqplot chart as an image (jpg,png,bmp.....) but i couldn't find anything wich was related to jqplot (there was only canvas2image which was close but when i tried it, i figured that it wasn't designed for jqplot...... :s ) ,
I need that function because when i copy/paste the chart from internet explorer 8 the chart is all different (the x,y axis and even the curve isn't at the right place..
View 4 Replies
View Related
Dec 10, 2011
I am working on a project that will involve large amounts of data. We have discussed how to summarize for the end user. Final presentation will be something like a bar chart with 15-30 bars. Each bar will be built by blocks whose height and column will be determined by formulas applied to data in the database. A static report is obviously no problem.
I want to develop a sandbox where the end user can drag and drop blocks from one column onto a different column. Others on the team think this can only be done with AJAX while I think jQuery will work and actually be better.
View 2 Replies
View Related
May 22, 2009
I read an article on this forum that was about a counter that tracked button clicks. What we have is a very simple site that has a drop down box that links to several different forms that are filled out then submitted (to a server that accepts HTTP POSTs). What I'm looking to do is put a small chart on the main page with the drop down that shows how many times a specific form was submitted, in essence tracking the submit button clicks on those forms. To be exact we have six forms. Please correct me if im wrong and there is a better way to accomplish this but that was the only way I could think of. I do not have .asp or .php capabilities on the paticular site so sticking to a javascript would be best.
View 7 Replies
View Related
Jan 28, 2011
I am really new to coding and am trying to include a flowchart that I have created on my site. There is a series of 5 questions with 2 possible answers for each question. Can anyone help me with some coding that would let me show only the first question and based on how they answer that, the flow chart would open up to the second question and once they answer the second question, it opens up to the third question and so on?
View 4 Replies
View Related
Jun 24, 2009
I am trying to load a jquery chart (Flot) inside the second tab of jQuery tabs. It works fine on the opening tab, but if i bury the chart in any tab, it breaks and throws the js error "Invalid dimensions for plot..."
I looked around and the problem might be that because the second tab is hidden at page load, it is breaking something... I dug up a possible jquery fix/plugin called frameReady, which allows for you to load iframes, but I am not sure how to apply it.
Example:[url]
Source:[url]
How I can enable the second tab to show the chart?
View 1 Replies
View Related
May 12, 2011
I'm looking for some guidance on the best way to use jQuery to change a set of simple shirt measurements (in a table) from inches to cm, and back again. Can I tell jQuery to look inside a specific table and then convery all the numbers it finds to another unit of measurement?
View 6 Replies
View Related
Jul 10, 2010
allows the chart to slide on (click on Report a Link , right next to the search box): [URL] I need to imporove the way this functions on my site. Here is how the report a link functions on my site:
[Code]....
View 1 Replies
View Related
Mar 31, 2010
Have a question regarding the comparison function on the At & t website URL...The site allows you to select different types of phones then generate a comparison chart based on your selection. I need to construct a similar comparison chart, but have no idea how to start the coding process.
View 1 Replies
View Related
Jun 24, 2009
I am trying to load a jquery chart (Flot) inside the second tab of jQuery tabs. It works fine on the opening tab, but if i bury the chart in any tab, it breaks and throws the js error "Invalid dimensions for plot..."I looked around and the problem might be that because the second tab is hidden at page load, it is breaking something... I dug up a possible jquery fix/plugin called frameReady, which allows for you to load iframes, but I am not sure how to apply it.
[URL]
how I can enable the second tab to show the chart?
View 2 Replies
View Related
Jul 23, 2005
Let me just start by saying... and I truly do mean this... I HATE frames. Now that I have that out of my system, unfortnualty I do not have a choice and am forced to use the complex structure that I am so SO needing help with. My framesets look like this
---------------------
| title |
|--------------------
| buttons |
|--------------------
| base |
|--------------------
inside the base frame I have ANOTHER frameset... split into frmLeft and frmRight... now if your mind isnt tied into knots... I am sure this will do it... I have a button called 'add category', which is on the buttons frame. When I click the button, I get a popup with the details... I add the category details... then I need the frame titled frmLeft to refresh. Is this possible?
View 1 Replies
View Related
Feb 9, 2006
When a user clicks the "Close Panel Manager" link on page2.htm I would like page1.htm to be refreshed without losing the address in browser1/page1.htm. Page2.htm is a child popup from parent window page1.htm.
browser2/page2.htm
<A href="javascript:self.close();">Close Panel Manager</a>
browser1/page1.htm
Address: http://www.somewebsite.com?ID=24
View 1 Replies
View Related
Feb 15, 2010
I'm using this code to force a PHP form to redirect. I already inserted a header for PHP and for whatever reason it's not working. This code works like a dream in Firefox, but it continuously loops in IE and makes it impossible to enter anything into the PHP form
<body onload="javascript: self.location.href = 'index.html';">
</body>
how to make this code not refresh IE literally every second?
View 2 Replies
View Related
Nov 14, 2010
How is it possible to login a form using javascript, without refreshing the page?
View 10 Replies
View Related
Aug 12, 2004
The user can manipulate a html-document presented in one of the frames, and then choose to save these changes.
After a php-script has saved the changes, it should reload the document using javascript:
parent.location.href="index.php?doc=<?php echo $file ?>";
and thus show the updated version of the document, but unfortunately, it doesn't. To see the changes made I have to refresh the webpage manually with the F5-key.
I'm guessing the browser caches the document, but how do I stop it from doing that?
View 1 Replies
View Related