Comments
litl_phil wrote: While it's nice that Google and Acer share the vision of cloud-based computing, it's also worth noting that we at litl already have a webbook on the market (available at litl.com) that runs our own cloud-based OS. Unlike Chrome, litlOS is focused on creating a new and better web experience for the home, so we don't have the usual browser interface, we have our own innovative UI. In conjunction with easel mode (litl's inverted-V position) and our growing cohort of litl channels (special apps t...
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


Introducing Spry
The promising pre-release of Adobe's AJAX framework

If you've been to Adobe Labs lately or keep up with the blogosphere you've probably heard the buzz about Spry. It's a new AJAX framework from Adobe.

It lets designers build rich Internet applications with little or no programming. The Adobe-Macromedia combine has been pushing RIAs for years and its vision is just now moving into the mainstream.

Adobe had three goals when creating Spry: open access, easy use, and enable innovation.

Open Access
Propriety tags or server-side code weren't used in the Spry framework, instead the capabilities of existing HTML tags were enhanced. Spry has been released under a BSD license and it's freely available on the Adobe Labs site.

Easy-To-Use
Spry was created with designers in mind. It uses regular HTML tags, CSS, and JavaScript. Very little coding is required, although its capabilities can certainly be enhanced with coding. The syntax reminds me of how ColdFusion integrates into Web pages as a tag-based language. You use the tags you're already familiar with, but with new properties. Adobe certainly accomplished its goal; Spry is very easy to use.

Enable Innovation
Enabling innovation is one of those warm and fuzzy goals. In this case what it's trying to do is give developers the ability to create rich applications while still allowing them freedom of design.

All that sounds great, but what is it really? Spry boils down to a couple of JavaScript libraries that you include in your Web page. Just a couple and you can be adding dynamic interactive content to your site. It can't be that easy you say, but it really is.

Loading Data in Spry
The two main JavaScript libraries that have to be included are xpath.js and spryData.js. The xpath.js is the Google implementation of XPath 1.0; spryData.js is the Spry library itself. Once these two files are included in your page Spry is enabled. Of course just enabling Spry doesn't do anything. You have to load some data and display it. Once you're Spry-enabled you can dynamically load data. This is one of the core features of the framework and is done by creating a Spry XMLDataSet. Right now XML is the only type of data supported, but there are plans to support other formats in the future. The sample below shows the code needed to enable Spry and load some data:

<script type="text/javascript" src="xpath.js"></script>
<script type="text/javascript" src="SpryData.js"></script>
<script type="text/javascript">
      var mydata=new Spry.Data.XMLDataSet("mydata.xml","/people/person");
</script>

Two pieces of information are need to load data into the Spry, the URL of the file you're loading and an xpath statement to select from the data that's returned. I used an XML file in the sample, but it could just as easily have been a dynamic file such as ColdFusion page that returns data from a database.

When using ColdFusion make sure you include a <cfcontent type="text/xml"> or Spry won't read the data. This has tripped server people up (include me) the first time they tried to retrieve data from a ColdFusion page. The URL can access data from anywhere, but it will generate a warning or may disallow loading data from other sites depending on the browser security settings. The xpath statement lets you filter the data that's retrieved. This is required even if the only thing you're selecting is the root node of the XML. Using the same data source you can select different XML nodes or search for a specific node or series of nodes in the XML.

Displaying Data in Spry
Once we have the data we want to display it. For this example I'm assuming we return a list of people with firstname, lastname, and e-mail as the fields. To output data you have to define a Spry Region. This is done by adding the attribute spry:region="dataset" to the tag such as a div that encloses the area using the dataset. This lets Spry know that it should update this area of the page if the specified dataset changes. The data output is very similar to data binding in Flex and has similarities to ColdFusion except with curly brackets and colons instead of hash marks. For instance, to output the first name returned in our data set the syntax would be {mydata::firstname}. Much like a ColdFusion query this would display the firstname field of our dataset from the first row of data. What we need to go with this is the ability to loop over a dataset when multiple data items are returned. This is done using the spry:repeat tag. But for a couple of minor differences, the syntax should feel familiar to you if you've been using ColdFusion. You don't use an output tag, you just embed it in the tag you want to loop with. The example below demonstrates how the tag would be use to display a table with our data:

<div spry:region="mydata">
<table>
<tr>
<th>First Name</th><th>Last Name</th><th>Email</th>
</tr>
<tr spry:repeat="mydata">
<td>{firstname}</td><td>{lastname}</td><td>{email}</td>
</tr>
</table>
</div>

This example is creating a table, but the same technique can be used to create other dynamic elements such as a select box by putting the SpryRepeat in the option tag. It makes chores like have multi-select boxes where the items in the second box depend on the item chosen on the first a breeze. You can update the second box without reloading the page by changing the URL of the data source for the second dataset. For instance, I could add a button that updated the data source to my table example:

<input type="button" onClick="mydata.setURL('mydata2.xml')">

When you click on the button the XML data would be read from a different file and the table would automatically update without reloading the page. You're not limited to text, you can bind the src attribute of an image to a Spry data field and the image will automatically be updated when the data changes.

Other Capabilities
The dynamic data capabilities are the core of the Spry framework, but this is still a pre-release of the technology. Though it's not covered in the documentation, there are two other Spry libraries included as part of the demos: SpryAccordion.js and SpryEffects.js. SpryAccordion.js contains code to produce an accordion-style menu. SpryEffects.js contains code for animation effects such as Move, Size, and Opacity. I expect these libraries will be expanded to include a full set of dynamic UI components and animation effects.

Limitations
All this dynamic functionality sounds great and you may be tempted to jump right in and start making Spry-based Web pages, but there are some limits you should keep in mind when working with Spry. Spry is AJAX-based and as such has the same limitations as AJAX. It can't work without JavaScript. If a user has JavaScript turned off your page won't work, not only that but the data might be inaccessible. If you were to browse to the sample used in this article with JavaScript turned off, you would just see a table with the variables in it. There would be no way for you get to the data.

This situation is of concern to the Spry team too and the latest release includes documentation on how to make your page usable even if Spry can't run. Since we're dealing with JavaScript you face the dreaded JavaScript-compatibility issues. Spry has been tested with Firefox 1.5 (Windows and Mac), Netscape 7.2 (Windows), Internet Explorer 6 (Windows), and Safari 2.0.3 (Mac). If you're not using one of these browsers, don't count on Spry working. It may not work at all or you may only have partial functionality. You also have the accessibility issues that come with dynamic Web content. Most screen readers do a poor job or just don't work with dynamic updates in Web pages.

Also keep in mind that Spry is in pre-release. The code could change at any time and it's not guaranteed to be backwards-compatible. There are already differences between the May and June releases. For instance, the format of the Spry Region attribute was changed from spryregion to spry:region. A minor difference, but it broke the code I had written and I had to update the examples in this article.

Where Is Spry Going?
The future of Spry is up in the air at this point. This is a pre-release of the code, not even an alpha or beta. The Spry team isn't event sure where it's going. They want feedback from the community to help with Spry's direction. Since many of the developers of Spry are on the Dreamweaver team I expect it to be included in Dreamweaver at some point. I also expect to see many more UI components and hopefully a component standard so that the community can create its own custom Spry components. This is just the beginning of a very interesting technology with a lot of potential. Hopefully we'll see it fulfill that potential soon.

About Kelly Brown
Kelly Brown is the CTO of About Web (www.aboutweb.com), an Internet solutions provider in the Washington, DC, area. He has a BS and MS in computer science and is a Microsoft-certified systems engineer.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

In the same period, you have a review for flex and an introduction to Spry, and i was worried, WHY Adobe created a second product (Spry) when it already has Flex? Coldfusion developer are not comfortable with Flex and i only know very few working with it, and adobe produces a new same product? How clever is that?

Thanks for mentioning accessibility for users with disabilities.

Are you aware of the dynamic content accessibility technology available in Firefox? Will Spry use those?

http://developer.mozilla.org/en/docs/Accessible_DHTML


Your Feedback
Dimitris Siskopoulos wrote: In the same period, you have a review for flex and an introduction to Spry, and i was worried, WHY Adobe created a second product (Spry) when it already has Flex? Coldfusion developer are not comfortable with Flex and i only know very few working with it, and adobe produces a new same product? How clever is that?
Aaron Leventhal wrote: Thanks for mentioning accessibility for users with disabilities. Are you aware of the dynamic content accessibility technology available in Firefox? Will Spry use those? http://developer.mozilla.org/en/docs/Accessible_DHTML
Enterprise Open Source Magazine Latest Stories . . .
Oracle seems to have divided the open source ranks over the MySQL delay it’s having closing its acquisition of Sun. Eben Moglin, the GPL’s most ardent defender and delineator, the lawyer who has worked hand in glove for years with the Free Software Foundation’s founder Richard Stallman...
Cloud computing is a game changer. The cloud is disrupting traditional software and hardware business models by disrupting how IT service gets delivered. Entrepreneurial opportunities abound as this classic disruptive technology begins to proliferate, so it is no surprise that SYS-CON'...
The irony is that Oracle has advanced MySQL, lost money in the process, and helped its competitors - all at the same time. When Oracle buys Sun and controls MySQL the gift (other than to Microsoft SQL Server) keeps on giving as the existential threat to RDBs is managed by Redwood Shore...
WSO2, the open source SOA company, today announced the launch of the WSO2 Cloud Platform. Available today, the new WSO2 Cloud Platform features a family of WSO2 Cloud Virtual Machines; WSO2 Cloud Connectors for enabling fast, secure cloud services; and the multi-tenant WSO2 Governance-...
Now, the open source Mozilla Thunderbird client software can be used with Open-Xchange collaboration software. The "Community OXtender for Thunderbird" software connector gives users full access to appointments and contacts stored in the Open-Xchange Server and enables them to use Thun...
Morph Labs, a leading provider of enterprise cloud computing technology, today announced an introductory trial of the Morph CloudServer, an open, standards-based server IT organizations can use to rapidly model and evaluate their cloud implementations. A miniature "Cloud Environment in...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON Featured Whitepapers
ADS BY GOOGLE