![]() |
Web Development »
Ajax and Atlas »
Samples
Intermediate
License: The Code Project Open License (CPOL)
Simple IGoogle GadgetBy Maxim KazitovSimple IGoogle gadget to display Expedia RSS. |
Javascript, XML, CSS, HTML, Dev, Design
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
This is a short article about iGoogle gadgets. The Gadgets API is easy to use, but documentation is really fuzzy.
Gadgets are mini applications that use the IGoogle framework and can live inside other sites. In short, it's a page inside an iFrame.
There are several steps to creating your first gadget:
The full gadget code is available here.
I decided to create a gadget which displays the hot deals from Expedia.com. After a few minutes in Google, I found the DataSource for my gadget - Expedia RSS Feed.

The gadget has two presentation parts:
<ModulePrefs
title="Travel Deals on Expedia"
description="Hot Travel Deals from Expedia.com. Cheap flights
and hotels, cruises and top deals."
title_url="http://www.expedia.com/daily/outposts/rss/expedia_rss.asp"
author="Maxim Kazitov"
author_email=mvkazit@tut.by
screenshot="http://www.yogageneration.com/~mvkazit/expedia/iexpedia/screen.jpg"
thumbnail="http://www.yogageneration.com/~mvkazit/expedia/iexpedia/thumbnail.gif"
directory_title="IG Expedia Hot Deals"
height="250"
width="250">
<icon>http://www.yogageneration.com/~mvkazit/expedia/iexpedia/icon.gif</icon>
<Require feature="setprefs"/>
<Require feature="dynamic-height"/>
</ModulePrefs>
In the code above, we are setting up all the required settings for a future gadget and including two modules at the end: "setprefs" and "dynamic-height". The first module allows us to programmatically save the user settings, the second one allows to adjust the height of the IFrame (if content height was changed).
_IG_RegisterOnloadHandler(pgLoad);
function pgLoad()
{
//...................
}
The pgLoad function will be called and a page will finish the loading process. Actually, the IG framework will add the following line at the end of the body.
_IG_TriggerEvent("domload");
Note: looks like "registerOnLoadHandler()" works only inside the Sandbox.
.................
var m_UsrPref = new _IG_Prefs(__MODULE_ID__);
m_UsrPref.getBool("hasCfg"))
m_UsrPref.set("hasCfg", true);
It's easy to read/write settings, but you must declare these settings first.
Now, we want to read the RSS feed:
_IG_FetchFeedAsJSON(buildURL(), parseResponse);
function parseResponse(obj)
{
var html = "";
if(obj && obj.Entry)
{
var n = obj.Entry.length;
for(var i=0; i<n; i++)
{
html+= buildEntryHTML(obj.Entry[i]);
}
}
rssRender(html);
}
The framework will automatically refresh feed every 60 minutes or so.
Note: looks like "gadgets.io.makeRequest()" works only inside the Sandbox. In general, gadgets.io* functions work only in the dev environment, and only _IG_* is really working.
_IG_AdjustIFrameHeight();
This call will adjust the size of the IFrame to fit the content height (again, don't try to use adjustHeight). Now, we can publish our gadget and share it with friends.
| You must Sign In to use this message board. | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
|
||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 1 Jul 2008 Editor: Smitha Vijayan |
Copyright 2008 by Maxim Kazitov Everything else Copyright © CodeProject, 1999-2010 Web19 | Advertise on the Code Project |