DataSource的一个例子
A:生成Datasource有几种方式:js创建方式, ds.xml定义方式, Java Bean方式, SQL方式.后面两种不是免费版的.
Java: <DataSource ID="contacts" schemaBean="com.sample.Contact" />
SQL: <DataSource ID="contacts" serverType="sql" tableName="contacts" autoDeriveSchema="true" />
1.建立xml of DS: WebRoot/WEB-INF/shared/ds/countryDS.ds.xml, ID和文件名一样.
2.建立Data文件:WebRoot/WEB-INF/data/countryData.xml
<script type="text/javascript">
<isomorphic:loadDS ID="countryDS" />
</script>
完整的jsp文件:
==============================================================
6.js文件:test/datasource1.jsisc.ListGrid.create({ID: "countryList",width:500, height:224, alternateRecordStyles:true, showAllRecords:true,dataSource: countryDS,autoFetchData: true});