Created
August 8, 2011 15:53
-
-
Save piscisaureus/1132019 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:a="http://ajax.org/2005/aml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Fubar</title> | |
<script src="js/apf_debug.js"></script> | |
</head> | |
<body> | |
<a:skin src="platform/skins.xml" media-path="platform/images/" icon-path="platform/icons/" /> | |
<a:model id="mdlNews"> | |
<data> | |
<news title="text 1" subtitle="text 11" date="2009-11-18"></news> | |
<news title="text 2" subtitle="text 21" date="2009-11-19"></news> | |
<news title="text 3" subtitle="text 31" date="2009-11-20"></news> | |
</data> | |
</a:model> | |
<a:datagrid model="mdlNews" options="move|size"> | |
<a:each match="[news]"> | |
<a:column caption="Date" value="[@date]" width="70" /> | |
<a:column caption="Title" width="180" value="[@title]"><a:textbox value="[@title]" /></a:column> | |
<a:column caption="Subtitle" value="[@subtitle]" width="100" /> | |
</a:each> | |
</a:datagrid> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment