Spry Review Part2(JP)
var dsAlbum = new Spry.Data.XMLDataSet("album.xml", "/contents/album"); var rows = dsAlbum.getData();
By default, the current row is set to the first row in the data set. Note that the index of the first row is always zero. The current row can be changed by calling the setCurrentRowNumber() with the row number that you want to change to. The built-in id property in the data set named "ds_RowID" is not changed after the order of the rows in the data changed. It can be changed by calling the setCurrentRow() with the row ID.
dsAlbum.setCurrentRowNumber(2); dsAlbum.setCurrentRow('{ds_RowID}');
Step1 : Import dataSet to comboBox
The Photolog f60k is a flash version of a image viewer and it will read a xml once when it loads. A php file will be used to create the xml. It extracts JPGs from the folder, and it writes them with xml tags into a blank document.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Photo Album</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="includes/xpath.js"></script> <script type="text/javascript" src="includes/SpryData.js"></script> <script type="text/javascript"> var dsAlbum = new Spry.Data.XMLDataSet("album.xml", "/contents/album"); </script> </head> <body> <div spry:region="dsAlbum"> <select> <option value="{folder}" spry:repeat="dsAlbum">{name}</option> </select> </div> </body> </html>
album.xml
<?xml version="1.0" encoding="UTF-8" ?> <contents> <album> <name>エミーズ</name> <folder>amys</folder> </album> <album> <name>ガブ</name> <folder>gab</folder> </album> <album> <name>鎌倉</name> <folder>kamakura</folder> </album> <album> <name>京都</name> <folder>kyoto</folder> </album> <album> <name>鳴子</name> <folder>naruko</folder> </album> <album> <name>ナイキ</name> <folder>nike</folder> </album> <album> <name>日光(夏)</name> <folder>nikko8</folder> </album> <album> <name>日光(寺)</name> <folder>nikko_temples</folder> </album> <album> <name>お台場</name> <folder>odaiba</folder> </album> <album> <name>大島</name> <folder>ooshima</folder> </album> <album> <name>フラメンコ</name> <folder>party</folder> </album> <album> <name>2003</name> <folder>spr_sum2003</folder> </album> </contents>