?? datalist.xml
字號:
<?xml version="1.0"?><application> <window caption="Data List Example" width="200" height="300"/> <resources> <script><![CDATA[function DataList() { var l = new BiList; var ds = new BiXmlDataSet( DataList.URI ); l.setDataSource( ds ); l.setDataValueField( "CategoryID" ); l.setDataTextField( "CategoryName" ); l.dataBind(); l.setLocation( 5, 5 ); l.setRight(5); l.setBottom(5); application.getWindow().add( l );}DataList.main = function () { new DataList; };DataList.URI = "../../../services/sql.aspx?q=select * from categories";//DataList.URI = "http://www.bindows.net/services/sql.aspx?q=select * from categories"; ]]></script> </resources></application>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -