Posts: 3,985
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
That's just describing an interactive calender, or a way of displaying a calender. The people on the video are just describing filling it with static data, but the normal way of doing it would be with dynamic data, which, as Chris pointed out, would have to come from a server.
So although you may display it in a fancy way with a YUI calender, or whatever, you need a server and some programming to do what you want it to, since JavaScript doesn't have any type of database to use directly, and must make AJAX calls if it needs to request anything new without a page-refresh. AJAX, of course, is just a way for the client side script to interact with a server application.
Last edited by wayfarer07; 10-31-2008 at 04:26 PM..
|