CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
不看会后悔的Windows XP之经验谈 简单快捷DIY实用家庭影院
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  Web 开发 >  JavaScript

调用table.nextPage()时会触发什么事件?

楼主robertlh(小卡)2004-05-04 11:29:06 在 Web 开发 / JavaScript 提问

调用table.nextPage()时会触发什么事件? 问题点数:0、回复次数:6Top

1 楼robertlh(小卡)回复于 2004-05-05 09:37:09 得分 0

有人知道吗Top

2 楼dullwolf(超级大笨狼之羊皮马甲)回复于 2004-05-05 23:28:55 得分 0

nextPage   Method  
   
  --------------------------------------------------------------------------------  
   
  Displays   the   next   page   of   records   in   the   data   set   to   which   the   table   is   bound.  
   
  Syntax  
   
  TABLE.nextPage()  
  Return   Value  
   
  No   return   value.  
   
  Remarks  
   
  The   number   of   records   displayed   in   the   table   is   determined   by   the   dataPageSize   property   of   the   table.   You   must   set   the   DATAPAGESIZE   attribute   when   designing   the   page,   or   set   the   corresponding   dataPageSize   property   at   run   time   for   this   method   to   have   any   effect.    
   
  Note     You   do   not   need   to   check   for   boundary   conditions.  
  Standards   Information  
   
  There   is   no   public   standard   that   applies   to   this   method.    
   
  Applies   To  
   
  [   Object   Name   ]    
  Platform   Version    
  Win16:      
  Win32:      
  Windows   CE:      
  Unix:      
  Mac:      
  Version   data   is   listed   when   the   mouse   hovers   over   a   link,   or   the   link   has   focus.    
    TABLE    
  Move   the   mouse   pointer   over   an   element   in   the   Applies   To   list   to   display   availability   information   for   the   listed   platforms.   Internet   Explorer   does   not   expose   this   member   on   platforms   that   are   not   listed.    
   
  See   Also  
   
  Introduction   to   Data   Binding,   firstPage,   lastPage,   previousPage  
   
  --------------------------------------------------------------------------------  
   
  ©   2003   Microsoft   Corporation.   All   rights   reserved.Top

3 楼dullwolf(超级大笨狼之羊皮马甲)回复于 2004-05-05 23:29:38 得分 0

DATAPAGESIZE   Attribute   |   dataPageSize   Property  
   
  --------------------------------------------------------------------------------  
   
  Sets   or   retrieves   the   number   of   records   displayed   in   a   table   bound   to   a   data   source.    
   
  Syntax  
   
  HTML   <TABLE   DATAPAGESIZE   =   iSize...   >      
  Scripting   TABLE.dataPageSize   [   =   iSize   ]    
   
  Possible   Values  
   
  iSize   Integer   that   specifies   or   receives   the   number   of   records   in   the   table.    
   
  The   property   is   read/write.   The   property   has   no   default   value.  
   
  Expressions   can   be   used   in   place   of   the   preceding   value(s),   as   of   Microsoft&reg;   Internet   Explorer   5.   For   more   information,   see   About   Dynamic   Properties.  
   
  Remarks  
   
  The   firstPage   and   lastPage   methods   are   used   to   navigate   directly   to   the   first   and   last   pages   of   a   databound   table,   respectively.   The   nextPage   and   previousPage   methods   are   used   to   navigate   sequentially   through   the   pages   of   a   databound   table.  
   
  Example  
   
  In   this   example,   a   text   box   is   bound   to   the   customer_name   field   supplied   by   a   data   source   object   with   an   ID   of   customer.   Because   the   text   box   is   located   within   a   data-bound   table,   the   text   box   is   repeated   to   display   each   of   the   records   in   the   data   source.   The   DATAPAGESIZE   attribute   on   the   table   limits   the   display   to   10   records.  
   
  <TABLE   DATASRC="#customer"   DATAPAGESIZE=10>  
        <TR><TD><INPUT   TYPE=TEXTBOX   DATAFLD="customer_name"></TD></TR>  
  </TABLE>  
  Standards   Information  
   
  There   is   no   public   standard   that   applies   to   this   property.    
   
  Applies   To  
   
  [   Object   Name   ]    
  Platform   Version    
  Win16:      
  Win32:      
  Unix:      
  Mac:      
  Windows   CE:      
  Version   data   is   listed   when   the   mouse   hovers   over   a   link,   or   the   link   has   focus.    
    TABLE    
  Move   the   mouse   pointer   over   an   element   in   the   Applies   To   list   to   display   availability   information   for   the   listed   platforms.   Internet   Explorer   does   not   expose   this   member   on   platforms   that   are   not   listed.    
   
  See   Also  
   
  Introduction   to   Data   Binding,   firstPage,   lastPage,   nextPage,   previousPage  
   
  --------------------------------------------------------------------------------  
   
  &copy;   2003   Microsoft   Corporation.   All   rights   reserved.Top

4 楼dullwolf(超级大笨狼之羊皮马甲)回复于 2004-05-05 23:30:45 得分 0

DATASRC   Attribute   |   dataSrc   Property  
   
  --------------------------------------------------------------------------------  
   
  Sets   or   retrieves   the   source   of   the   data   for   data   binding.  
   
  Syntax  
   
  HTML   <ELEMENT   DATASRC   =   sID...   >      
  Scripting   object.dataSrc   [   =   sID   ]    
   
  Possible   Values  
   
  sID   String   that   specifies   or   receives   the   identifier   of   the   data   source.    
   
  The   property   is   read/write.   The   property   has   no   default   value.  
   
  Expressions   can   be   used   in   place   of   the   preceding   value(s),   as   of   Microsoft&reg;   Internet   Explorer   5.   For   more   information,   see   About   Dynamic   Properties.  
   
  Remarks  
   
  Tabular   and   single-valued   data   consumers   use   the   dataSrc   property   to   specify   a   binding.   The   property   takes   a   string   that   corresponds   to   the   unique   identifier   of   a   data   source   object   (DSO)   on   the   page.   The   string   must   be   prefixed   by   a   number   sign   (#).  
   
  When   the   dataSrc   property   is   applied   to   a   tabular   data   consumer,   the   entire   data   set   is   repeated   by   the   consuming   elements.  
   
  When   the   dataSrc   property   is   applied   to   a   table,   any   contained   single-valued   consumer   objects   that   specify   a   dataFld   property   are   repeated   for   each   record   in   the   supplied   data   set.   To   complete   the   binding,   the   binding   agent   interrogates   the   enclosing   table   for   its   data   source.   A   tabular   data   consumer   contained   within   another   tabular   data   consumer   (table)   must   specify   an   explicit   dataSrc.  
   
  Example  
   
  In   this   example,   a   text   box   is   bound   to   the   customer_name   field   of   a   data   source   object   with   an   ID   of   "customer".   Because   the   text   box   is   located   within   a   data-bound   table,   the   text   box   is   repeated   to   display   each   of   the   records   provided   by   the   data   source.  
   
  <TABLE   DATASRC="#customer">    
        <TR><TD><INPUT   TYPE=TEXTBOX   DATAFLD="customer_name"><TD><TR>  
  </TABLE>  
  Standards   Information  
   
  There   is   no   public   standard   that   applies   to   this   property.    
   
  Applies   To  
   
  [   Object   Name   ]    
  Platform   Version    
  Win16:      
  Win32:      
  Unix:      
  Mac:      
  Windows   CE:      
  Version   data   is   listed   when   the   mouse   hovers   over   a   link,   or   the   link   has   focus.    
    A,   APPLET,   BUTTON,   DIV,   FRAME,   IFRAME,   IMG,   INPUT   type=button,   INPUT   type=checkbox,   INPUT   type=hidden,   INPUT   type=image,   INPUT   type=password,   INPUT   type=radio,   INPUT   type=text,   LABEL,   MARQUEE,   SELECT,   SPAN,   TABLE,   TEXTAREA    
  Move   the   mouse   pointer   over   an   element   in   the   Applies   To   list   to   display   availability   information   for   the   listed   platforms.   Internet   Explorer   does   not   expose   this   member   on   platforms   that   are   not   listed.    
   
  See   Also  
   
  Introduction   to   Data   Binding  
   
  --------------------------------------------------------------------------------  
   
  &copy;   2003   Microsoft   Corporation.   All   rights   reserved.Top

5 楼robertlh(小卡)回复于 2004-05-06 09:30:31 得分 0

在用table.nextPage()进行翻页时,页数改变有没有触发事件Top

6 楼hbzyduwu(^-^鞋带又松了~-~)回复于 2004-05-06 09:32:52 得分 0

没仔细看,应该是和绑定表格时,有关的方法.Top

相关问题

  • 触发器怎样调用过程?
  • delphi无法调用SQLSERVER的触发器????
  • 触发器中调用存储过程?
  • 触发器能不能递归调用?
  • 如何在触发器中调用存储过程?
  • 在触发器中调用存储过程??急!!!
  • 在触发器中调用存储过程??急!!!
  • 触发器中能调用外部程序吗??
  • 调用什么函数才能触发WM_INITIALUPDATE消息??
  • 可否在触发器中调用存储过程?

关键词

  • win32
  • source
  • datapagesize
  • nextpage
  • datasrc
  • 触发
  • alsointroduction
  • informationthere
  • applies
  • platforms

得分解答快速导航

  • 帖主:robertlh

相关链接

  • Web开发类图书

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
北京创新乐知广告有限公司 版权所有, 京 ICP 证 070598 号
世纪乐知(北京)网络技术有限公司 提供技术支持
Copyright © 2000-2008, CSDN.NET, All Rights Reserved
GongshangLogo