I’m trying to develop a tool to show my sales team where they are in the month towards their quota.
I have their quota divided up into business days already but I want to be able to show them how close they are to their quota as a sale hits, so they place a sale and it updates the chart automatically.
I have this working as a snap not, hit refresh and reloads data but I’m then planning to stream this into their sales room ( so hitting refresh isn’t an option).
I assume you need a mechanism to automate the refreshing for the data.
In that case you can use either meta refresh or a javascript refresh or ajax.
Meta refresh can be done as below.
The above code will refresh the page in every 5 seconds.
This also will refresh the page every 5 seconds.
Or else use the jQuery Ajax to call your results page into another page. For example if your results page name is tables.php, then the code would be as follows.
cache:false is needed for IE fix
Thanks.