HTML and javascript dashboard
-
I have created HTML tables as below by hard coded the values: Name weekhandledticket monthlyhandledticket dailyhandledticket credits xyz 1 2 1 1 My requirement is I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement? TO BE MORE PRECISE "TO create a dashboard using HTML table and display the data on runtime with help of javascript ?"
-
I have created HTML tables as below by hard coded the values: Name weekhandledticket monthlyhandledticket dailyhandledticket credits xyz 1 2 1 1 My requirement is I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement? TO BE MORE PRECISE "TO create a dashboard using HTML table and display the data on runtime with help of javascript ?"
Erm, yes, that's entirely possible and even normal. It sounds like you need to learn some JS and I would suggest by starting with jQuery. Have a look at jQuery Learning Center[^] to get started.
"There are three kinds of lies: lies, damned lies and statistics." - Benjamin Disraeli
-
I have created HTML tables as below by hard coded the values: Name weekhandledticket monthlyhandledticket dailyhandledticket credits xyz 1 2 1 1 My requirement is I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement? TO BE MORE PRECISE "TO create a dashboard using HTML table and display the data on runtime with help of javascript ?"
You can learn how to use javaScript (and the DOM access it gives you) here: JavaScript Tutorial[^] But the best way to generate pages is server-side, for which PHP is a great language: PHP 5 Tutorial[^] You can make changes to an existing page with either javaScript (via DOM) or php (via AJAX), depending upon where the 'new' data is stored.
"The difference between genius and stupidity is that genius has its limits." - Albert Einstein
"If you are searching for perfection in others, then you seek disappointment. If you are seek perfection in yourself, then you will find failure." - Balboos HaGadol Mar 2010
-
I have created HTML tables as below by hard coded the values: Name weekhandledticket monthlyhandledticket dailyhandledticket credits xyz 1 2 1 1 My requirement is I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement? TO BE MORE PRECISE "TO create a dashboard using HTML table and display the data on runtime with help of javascript ?"
1. Try to learn Jquery , HTML Tables and Ajax 2. Put and ajax call and bind the response in html tables to show
-
I have created HTML tables as below by hard coded the values: Name weekhandledticket monthlyhandledticket dailyhandledticket credits xyz 1 2 1 1 My requirement is I want to achieve this dashboard directly on browser without hard coding the values.it should directly taken from external file like javascript .is it possible to attain this requirement using JavaScript itself? Please give me some idea to drive this requirement? TO BE MORE PRECISE "TO create a dashboard using HTML table and display the data on runtime with help of javascript ?"
Its really easy, You need to study more jquery, Tables , Ajax . 1. put an ajax call and get your data in jquery. 2. Bind your data to the html table format. Here you done