📄 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 + -