Get the next Page Example : Data Page : Table : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
PHP
JavaScript DHTML Home »  Table   » [  Data Page  ]   
 



Get the next Page Example

Please note that some example is only working under IE or Firefox.

    
<html>
<head>
<script language="javascript">
function goFirst(){
   document.all.myTable.dataPageSize = 2;
   myTable.firstPage()

function goPrevious(){
   document.all.myTable.dataPageSize = 2;
   myTable.previousPage()
}
function goNext(){
   document.all.myTable.dataPageSize = 2;
   myTable.nextPage()
}
function goLast(){
   document.all.myTable.dataPageSize = 2;
   myTable.lastPage()</script>
<body>
<button onclick="goFirst();">First Page</button>
<button onclick="goPrevious();">Previous Page</button>
<button onclick="goNext();">Next Page</button>
<button onclick="goLast();">Last Page</button>
<button onclick="alert(document.all.myData.namedRecordset(''));">Named recordset</ 
button>
<object classid="clsid:333C7BC4-460F-11D0-BC04-0080C7055A83" id="myData">
    <param name="DataURL" value="myfile.csv">
    <param name="UseHeader" value="True">
    <param name="TextQualifier" value="'">
</object>
<table id="myTable" datasrc="#myData">
<thead>
    <tr style="font-weight:bold">
        <td>First</td>
        <td>Last</td>
    </tr>
</thead>
<tbody>
<tr id="tableList">
   <td><span datafld="firstname"></span></td>
   <td><span datafld="lastname"></span></td>
</tr>
</tbody>
</table>
</body>
</html>
   
<!-- myfile.csv-->
<!-- 
firstname:STRING,lastname:STRING
Joe,Smith
Manny,LastName
Tony,Belling
--> 
      
      
Related examples in the same category
1.  Get the first Page
2.  GEt the last Page
3.  Get previous Page Example
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.