1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
<?xml version="1.0"?>
<!--
-
- $Id: data_set_1.vspx,v 1.2 2006/08/16 00:04:14 source Exp $
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2006 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<!--! \brief Simple multi-row data grid based on data-set control
This example will show list of customers from Northwind demo database.
Allows scrolling only of existing records.
-->
<v:page name="data_set__0" xmlns:v="http://www.openlinksw.com/vspx/">
<html>
<body>
<v:data-set name="ds" sql="select CustomerID, CompanyName, Phone from Demo.demo.Customers" nrows="10" scrollable="1" cursor-type="keyset">
<v:template name="t1" type="simple">
<div>
<v:label name="l1" value="CustomerID" format="%s" width="80"/>
<v:label name="l2" value="CompanyName" format="%s" width="80"/>
<v:label name="l3" value="Phone" format="%s" width="80"/>
</div>
</v:template>
<v:template name="t2" type="repeat">
<v:template name="t7" type="if-not-exists">
<div>No rows selected</div>
</v:template>
<v:template name="t4" type="browse">
<div>
<v:label name="l5" value="--(control.vc_parent as vspx_row_template).te_rowset[0]"/>
<v:label name="l6" value="--(control.vc_parent as vspx_row_template).te_rowset[1]"/>
<v:label name="l7" value="--(control.vc_parent as vspx_row_template).te_rowset[2]"/>
</div>
</v:template>
</v:template>
<v:template name="t3" type="simple">
<div>
<v:button name="ds_prev" action="simple" value="<<"/>
<v:button name="ds_next" action="simple" value=">>"/>
</div>
</v:template>
</v:data-set>
</body>
</html>
</v:page>
|