CN1395193A - 在网页上生成动态可编辑表格的方法 - Google Patents

在网页上生成动态可编辑表格的方法 Download PDF

Info

Publication number
CN1395193A
CN1395193A CN 01120118 CN01120118A CN1395193A CN 1395193 A CN1395193 A CN 1395193A CN 01120118 CN01120118 CN 01120118 CN 01120118 A CN01120118 A CN 01120118A CN 1395193 A CN1395193 A CN 1395193A
Authority
CN
China
Prior art keywords
webpage
dynamically
data
generates
edit
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN 01120118
Other languages
English (en)
Inventor
李翼松
宋建福
林光信
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Inventec Corp
Original Assignee
Inventec Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Inventec Corp filed Critical Inventec Corp
Priority to CN 01120118 priority Critical patent/CN1395193A/zh
Publication of CN1395193A publication Critical patent/CN1395193A/zh
Pending legal-status Critical Current

Links

Images

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

一种在网页上生成动态可编辑表格的方法,至少包含下列步骤:依据使用者需求由一服务器端(Server)向一客户端(Client)传送一数据;透过客户端将数据用以生成该动态可编辑表格,并显示在一浏览器(Browser)的一网页(Web)中;接着客户端针对动态可编辑表格进行各种编辑、统计等操作;同时将该服务器端的该数据进行同步修改,并将该数据加以储存。

Description

在网页上生成动态可编辑表格的方法
技术领域
本发明涉及一种动态可编辑表格的方法,特别是指一种在网页上生成动态可编辑表格的方法。
背景技术
目前,在网页(Web)设计技术中,生成的表格都是静态的,使用者只能按指定的方式浏览表格,不能进行增加、修改、实时统计、排序等复杂操作。即使允许使用者针对表格数据进行简单操作,也需要重新由服务器端(Server)重新传输数据更新页面,不能保持表格操作的连续性。
再者,由于愈来愈多的网页(Web)设计,提供多方的控管、输入、编辑的实时性更新功能,因此,一种在网页上生成动态可编辑表格的方法遂成为一被关注的议题。
发明内容
本发明的目的主要是在网页上生成动态可编辑表格的方法,其呈现方式系采用爪哇描述语言(Java Script)实现表格的动态交互性操作。
本发明之方法还可以在表格中动态插入按扭、选择框、输入框等控件和HTML元素。从而使浏览器(Browser)不仅能浏览数据,更能编辑和组织数据。
本发明的另一目的在于方便开发程序者重复使用表格,满足不同的需求,而无需重新设计。
本发明是按如下技术方案实现的,本发明的主要功能模块方块图如图1所示,其中包括一数据产生模块101,依据使用者需求由服务器端(Server)100向客户端(Client)200传送数据;一表格处理模块102,用以生成动态表格并显示在浏览器(Browser)的网页(Web)105中;一动态操作模块103,提供使用者针对动态表格进行各种编辑、统计等操作,并将操作结果在网页(Web)105上直接修改,同时还可以呼叫一保存数据模块104,进行服务器端100数据的同步修改。以下针对各模块之功能叙述如下:
(1)数据产生模块101:
图2为本发明之数据产生模块流程图,首先分析使用者数据需求(步骤201);接着判断是否需要使用数据库中的数据(步骤202)?若不使用数据库,则直接按客户要求生成数据(步骤203),也可以是空数据,留待使用者进行添加;若使用数据库,则生成符合要求的数据查询条件(步骤204);并依据该条件打开数据库(步骤205);然后获取数据(步骤206);最后,使用“Response.Write方法”将所有得到的数据逐条发送到客户端(Client)200的网页(Web)105(步骤207)。
(2)表格处理模块102:
在客户端(Client)200的网页(Web)105中,表格处理模块102直接处理原始数据,生成表格。其流程请参考图3所示,首先,获取一原始数据(步骤301),进行处理表头(步骤302),生成字段头HTML语句,在字段头中设置排序事件和字段宽度;然后处理表体(步骤303),逐条记录生成HTML语句,并在表体中设置记录选中事件、编辑方式、控件和HTML元素插入等;接着是处理表尾(步骤304),设置统计值等。最后将生成表格HTML语句(步骤305),将表头、表体、表尾合成后显示在网页(Web)105上。
(3)动态操作模块103:
使用者操作主要包括:鼠标操作1031及键盘操作1032。
鼠标操作如图4所示:当鼠标点选(Click)字段表头(FieldName)时(步骤401),模块会产生排序(Sorting)事件(步骤402),该排序会按照点选的字段正序排序,再次点选时会反序排序。当鼠标点选表体(Body)时(步骤403),则判断是否已有选中记录(步骤404),如果有,则将已选记录设为未选中状态(步骤405),例如选中某行,则保存该行内容,该行插入控件消失,然后该行设为不选中;如果没有,则选择点中记录(步骤406),例如将点选行的内容置为选中状态;接着设置字段(field)为可编辑(步骤407),以生成可编辑输入框供使用者选择记录编辑,接着插入指定控件和HTML元素(E1ement)(步骤408)以方便使用者使用。
键盘操作如图5所示:使用者按键盘方向键时,先保存原先行内容,原先行插入控件消失,然后方向键向上键(Up Key)时选择上一行(步骤501)、方向键向下键(Down Key)时选择下一行(步骤502)内容、上一页键(PageUp Key)时选择上一页第一行(步骤503)、下一页键(PageDown Key)时选择下一页第一行(步骤504)。
使用者指定操作1033如图6所示:通过生成表格时预制的方法,可以添加记录(步骤601),即可在网页(Web)105增加新元素(步骤6011);可以删除记录(步骤602),即可在网页(Web)105删除指定元素(步骤6021);可以修改记录(步骤603),即可在网页(Web)105修改指定元素(步骤6031);还可以获取当前记录属性(步骤604),即可获取指定元素相关数据(步骤6041),如行号,当前行记录内容等。
(4)保存数据模块104:
该模块在服务器端运行,请参考第7图所示。首先生成SQL语句(步骤701),使用UPDATE、DELETE、INSERT等子句指定更新内容(步骤702)。然后使用数据连接(Connection)的Open方法呼叫SQL语句(步骤703),保存到数据库(步骤704)。
本发明揭露的一种可以在网页(Web)上实现动态表格的方法,其有益效果为:这种动态表格能实现对表格中的记录进行增加、删除、修改等编辑,能实现统计、排序、记录选择、输入装置控制的功能。同时所有动态操作都在客户端(Client)完成,不必透过服务器端(Server)更新页面。
附图说明
图1为本发明之主要功能模块方块图;
图2为本发明之数据产生模块流程图;
图3为本发明之表格处理模块流程图;
图4为本发明之动态操作模块之鼠标操作流程图;
图5为本发明之动态操作模块之键盘操作流程图;
图6为本发明之表格指定事件操作流程图;
图7为本发明之保存数据流程图;及
图8为本发明之在网页上生成动态可编辑表格的使用效果示意图。
具体实施方式
请参阅图8,为本发明在网页上生成动态可编辑表格的使用效果示意图,所有的表格都使用本方法在网页上生成,可以满足使用者所有操作数据的需求。在选中的记录802中,使用者可以对“外部代码”、“数量”等可编辑字段(Field)801直接输入。可通过插入日期选择按钮804选择日期,亦可按“数量”、“商品代码”、“储位”等指定字段803排序,也可以插入选择框805,选择储位状态。
虽然本发明以前述之较佳实施例揭露如上,然其并非用以限定本发明,任何熟习此技艺者,在不脱离本发明之精神和范围内,当可作更动与润饰。

Claims (17)

1.一种在网页上生成动态可编辑表格的方法,其特征在于至少包含下列步骤:
依据使用者需求由一服务器端向一客户端传送一数据;
透过该客户端将该数据用以生成该动态可编辑表格,并显示在一浏览器的一网页中;
该客户端针对该动态可编辑表格进行各种编辑、统计等操作;及
将该服务器端的该数据进行同步修改,并将该数据加以储存。
2.如权利要求1所述的在网页上生成动态可编辑表格的方法,其特征在于是采用Java Script语言实现该表格的动态交互性操作。
3.如权利要求1所述的在网页上生成动态可编辑表格的方法,其特征在于所述数据是透过一数据产生模块加以产生。
4.如权利要求3所述的在网页上生成动态可编辑表格的方法,其特征在于所述数据产生模块的执行流程包含下列步骤:
分析一使用者数据需求;
提供该使用者使用一数据库中的数据;
生成符合要求的数据查询条件;
依据该条件打开该数据库,并获取该数据;及
将所有得到的该数据逐条发送到客户端的该网页中。
5.如权利要求4所述的在网页上生成动态可编辑表格的方法,其特征在于还包含该客户端直接要求生成数据的步骤。
6.如权利要求1所述的在网页上生成动态可编辑表格的方法,其特征在于所述生成该动态可编辑表格的步骤是透过一表格处理模块加以产生。
7.如权利要求6所述的在网页上生成动态可编辑表格的方法,其特征在于所述表格处理模块的执行流程包含下列步骤:
获取一原始数据;
处理表头,生成一字段头HTML语句,在该字段头中设置一排序事件和一字段宽度;
处理表体,逐条记录生成该HTML语句,并在该表体中设置记录选中事件、编辑方式、控件和HTML元素插入;
处理表尾,设置一统计值;及
生成一表格HTML语句,将该表头、该表体、该表尾合成后显示在该网页上。
8.如权利要求1所述的在网页上生成动态可编辑表格的方法,其特征在于所述针对该动态可编辑表格进行各种编辑、统计等操作的步骤是透过一动态操作模块加以产生。
9.如权利要求8所述的在网页上生成动态可编辑表格的方法,其特征在于所述动态操作模块可选自一鼠标操作、一键盘操作及使用者指定操作的组合中任选其中一种。
10.如权利要求9所述的在网页上生成动态可编辑表格的方法,其特征在于当执行所述鼠标操作时,当一鼠标点选一字段表头时,该动态操作模块会产生一排序事件。
11.如权利要求9所述的在网页上生成动态可编辑表格的方法,其特征在于当执行所述鼠标操作时,当该鼠标点选一表体时,则选择点中记录。
12.如权利要求11所述的在网页上生成动态可编辑表格的方法,其特征在于所述选择点中记录是用以设置该字段为可编辑,并生成一可编辑输入框供该使用者选择记录编辑。
13.如权利要求12所述的在网页上生成动态可编辑表格的方法,其特征在于还包含插入指定控件和HTML元素以提供该使用者使用。
14.如权利要求9所述的在网页上生成动态可编辑表格的方法,其特征在于当执行该使用者指定操作时,可以选自添加记录、删除记录、修改记录及获取当前记录属性的组合中任选其中一种。
15.如权利要求1所述的在网页上生成动态可编辑表格的方法,其特征在于所述将该数据加以储存的步骤是透过一保存数据模块加以产生。
16.如权利要求15所述的在网页上生成动态可编辑表格的方法,其特征在于该保存数据模块的执行流程包含下列步骤:
生成一SQL语句;
指定更新内容;
呼叫SQL语句;及
保存到一数据库。
17.如权利要求16所述的在网页上生成动态可编辑表格的方法,其特征在于所述指定更新内容的步骤是使用UPDATE、DELETE、INSERT等子句指定更新内容。
CN 01120118 2001-07-05 2001-07-05 在网页上生成动态可编辑表格的方法 Pending CN1395193A (zh)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN 01120118 CN1395193A (zh) 2001-07-05 2001-07-05 在网页上生成动态可编辑表格的方法

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN 01120118 CN1395193A (zh) 2001-07-05 2001-07-05 在网页上生成动态可编辑表格的方法

Publications (1)

Publication Number Publication Date
CN1395193A true CN1395193A (zh) 2003-02-05

Family

ID=4663911

Family Applications (1)

Application Number Title Priority Date Filing Date
CN 01120118 Pending CN1395193A (zh) 2001-07-05 2001-07-05 在网页上生成动态可编辑表格的方法

Country Status (1)

Country Link
CN (1) CN1395193A (zh)

Cited By (35)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100367202C (zh) * 2005-05-17 2008-02-06 杭州华三通信技术技术有限公司 一种网页列表控件及其实现方法
CN100403294C (zh) * 2003-09-04 2008-07-16 华为技术有限公司 一种实时修改客户端数据报表的方法
CN101115068B (zh) * 2007-07-19 2010-12-29 潘晓梅 在客户端调整网页显示内容的方法及系统
WO2011029252A1 (zh) * 2009-09-10 2011-03-17 中兴通讯股份有限公司 一种基于数据定义的web页面快速生成方法及装置
US7917545B2 (en) 2004-09-30 2011-03-29 Microsoft Corporation Web-based data form
CN102520935A (zh) * 2011-11-29 2012-06-27 曙光信息产业(北京)有限公司 一种用于快速开发用户界面的方法
CN102571869A (zh) * 2010-12-31 2012-07-11 中国科学院沈阳自动化研究所 一种载人潜水器水面监视系统
US8495001B2 (en) 2008-08-29 2013-07-23 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US8510302B2 (en) 2006-08-31 2013-08-13 Primal Fusion Inc. System, method, and computer program for a consumer defined information architecture
US8676732B2 (en) 2008-05-01 2014-03-18 Primal Fusion Inc. Methods and apparatus for providing information of interest to one or more users
US8676722B2 (en) 2008-05-01 2014-03-18 Primal Fusion Inc. Method, system, and computer program for user-driven dynamic generation of semantic networks and media synthesis
CN103729340A (zh) * 2013-12-29 2014-04-16 上海浦东物流云计算有限公司 网页中编辑表格的方法和装置
US8849860B2 (en) 2005-03-30 2014-09-30 Primal Fusion Inc. Systems and methods for applying statistical inference techniques to knowledge representations
US9092516B2 (en) 2011-06-20 2015-07-28 Primal Fusion Inc. Identifying information of interest based on user preferences
US9104779B2 (en) 2005-03-30 2015-08-11 Primal Fusion Inc. Systems and methods for analyzing and synthesizing complex knowledge representations
US9177248B2 (en) 2005-03-30 2015-11-03 Primal Fusion Inc. Knowledge representation systems and methods incorporating customization
US9235806B2 (en) 2010-06-22 2016-01-12 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
US9262520B2 (en) 2009-11-10 2016-02-16 Primal Fusion Inc. System, method and computer program for creating and manipulating data structures using an interactive graphical interface
US9292855B2 (en) 2009-09-08 2016-03-22 Primal Fusion Inc. Synthesizing messaging using context provided by consumers
CN105488016A (zh) * 2014-09-16 2016-04-13 武汉联影医疗科技有限公司 web表格数据的选取方法及装置
US9361365B2 (en) 2008-05-01 2016-06-07 Primal Fusion Inc. Methods and apparatus for searching of content using semantic synthesis
US9378203B2 (en) 2008-05-01 2016-06-28 Primal Fusion Inc. Methods and apparatus for providing information of interest to one or more users
CN105786783A (zh) * 2014-12-23 2016-07-20 远光软件股份有限公司 一种web表格的数据处理方法及装置
CN106610924A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 用于网页表格的单元格的撤销方法及装置
CN106610925A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 网页表格的显示方法及装置
CN106610774A (zh) * 2015-10-23 2017-05-03 北京国双科技有限公司 网页表格编辑方法及装置
CN106610923A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 用于网页表格的单元格的撤销方法及装置
CN107679238A (zh) * 2017-10-27 2018-02-09 杭州迪普科技股份有限公司 一种新建对象方法及装置
US10002325B2 (en) 2005-03-30 2018-06-19 Primal Fusion Inc. Knowledge representation systems and methods incorporating inference rules
CN109189789A (zh) * 2018-08-22 2019-01-11 郑州云海信息技术有限公司 一种用于显示表格的方法和装置
CN109375977A (zh) * 2018-10-15 2019-02-22 郑州云海信息技术有限公司 一种实现页面表格编辑的方法及装置
CN109491574A (zh) * 2018-10-26 2019-03-19 中国工商银行股份有限公司 包含表格的页面交互装置及方法
US10248669B2 (en) 2010-06-22 2019-04-02 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
CN110472925A (zh) * 2018-05-11 2019-11-19 懿谷智能科技(上海)有限公司 一种基于网页流程图的实验室测试流程管理系统及方法
US11294977B2 (en) 2011-06-20 2022-04-05 Primal Fusion Inc. Techniques for presenting content to a user based on the user's preferences

Cited By (56)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100403294C (zh) * 2003-09-04 2008-07-16 华为技术有限公司 一种实时修改客户端数据报表的方法
US7917545B2 (en) 2004-09-30 2011-03-29 Microsoft Corporation Web-based data form
US8849860B2 (en) 2005-03-30 2014-09-30 Primal Fusion Inc. Systems and methods for applying statistical inference techniques to knowledge representations
US9104779B2 (en) 2005-03-30 2015-08-11 Primal Fusion Inc. Systems and methods for analyzing and synthesizing complex knowledge representations
US9177248B2 (en) 2005-03-30 2015-11-03 Primal Fusion Inc. Knowledge representation systems and methods incorporating customization
US10002325B2 (en) 2005-03-30 2018-06-19 Primal Fusion Inc. Knowledge representation systems and methods incorporating inference rules
US9934465B2 (en) 2005-03-30 2018-04-03 Primal Fusion Inc. Systems and methods for analyzing and synthesizing complex knowledge representations
US9904729B2 (en) 2005-03-30 2018-02-27 Primal Fusion Inc. System, method, and computer program for a consumer defined information architecture
CN100367202C (zh) * 2005-05-17 2008-02-06 杭州华三通信技术技术有限公司 一种网页列表控件及其实现方法
US8510302B2 (en) 2006-08-31 2013-08-13 Primal Fusion Inc. System, method, and computer program for a consumer defined information architecture
CN101595476B (zh) * 2006-08-31 2017-09-29 启创互联公司 用于客户定义信息架构的系统、方法和计算机程序
CN101115068B (zh) * 2007-07-19 2010-12-29 潘晓梅 在客户端调整网页显示内容的方法及系统
US8676732B2 (en) 2008-05-01 2014-03-18 Primal Fusion Inc. Methods and apparatus for providing information of interest to one or more users
US8676722B2 (en) 2008-05-01 2014-03-18 Primal Fusion Inc. Method, system, and computer program for user-driven dynamic generation of semantic networks and media synthesis
US9792550B2 (en) 2008-05-01 2017-10-17 Primal Fusion Inc. Methods and apparatus for providing information of interest to one or more users
US9361365B2 (en) 2008-05-01 2016-06-07 Primal Fusion Inc. Methods and apparatus for searching of content using semantic synthesis
US11182440B2 (en) 2008-05-01 2021-11-23 Primal Fusion Inc. Methods and apparatus for searching of content using semantic synthesis
US11868903B2 (en) 2008-05-01 2024-01-09 Primal Fusion Inc. Method, system, and computer program for user-driven dynamic generation of semantic networks and media synthesis
US9378203B2 (en) 2008-05-01 2016-06-28 Primal Fusion Inc. Methods and apparatus for providing information of interest to one or more users
US12032616B2 (en) 2008-08-29 2024-07-09 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US10803107B2 (en) 2008-08-29 2020-10-13 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US8495001B2 (en) 2008-08-29 2013-07-23 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US8943016B2 (en) 2008-08-29 2015-01-27 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US9595004B2 (en) 2008-08-29 2017-03-14 Primal Fusion Inc. Systems and methods for semantic concept definition and semantic concept relationship synthesis utilizing existing domain definitions
US9292855B2 (en) 2009-09-08 2016-03-22 Primal Fusion Inc. Synthesizing messaging using context provided by consumers
US10181137B2 (en) 2009-09-08 2019-01-15 Primal Fusion Inc. Synthesizing messaging using context provided by consumers
WO2011029252A1 (zh) * 2009-09-10 2011-03-17 中兴通讯股份有限公司 一种基于数据定义的web页面快速生成方法及装置
US9262520B2 (en) 2009-11-10 2016-02-16 Primal Fusion Inc. System, method and computer program for creating and manipulating data structures using an interactive graphical interface
US10146843B2 (en) 2009-11-10 2018-12-04 Primal Fusion Inc. System, method and computer program for creating and manipulating data structures using an interactive graphical interface
US9235806B2 (en) 2010-06-22 2016-01-12 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
US11474979B2 (en) 2010-06-22 2022-10-18 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
US9576241B2 (en) 2010-06-22 2017-02-21 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
US10248669B2 (en) 2010-06-22 2019-04-02 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
US10474647B2 (en) 2010-06-22 2019-11-12 Primal Fusion Inc. Methods and devices for customizing knowledge representation systems
CN102571869A (zh) * 2010-12-31 2012-07-11 中国科学院沈阳自动化研究所 一种载人潜水器水面监视系统
US9715552B2 (en) 2011-06-20 2017-07-25 Primal Fusion Inc. Techniques for presenting content to a user based on the user's preferences
US10409880B2 (en) 2011-06-20 2019-09-10 Primal Fusion Inc. Techniques for presenting content to a user based on the user's preferences
US9092516B2 (en) 2011-06-20 2015-07-28 Primal Fusion Inc. Identifying information of interest based on user preferences
US11294977B2 (en) 2011-06-20 2022-04-05 Primal Fusion Inc. Techniques for presenting content to a user based on the user's preferences
CN102520935A (zh) * 2011-11-29 2012-06-27 曙光信息产业(北京)有限公司 一种用于快速开发用户界面的方法
CN103729340A (zh) * 2013-12-29 2014-04-16 上海浦东物流云计算有限公司 网页中编辑表格的方法和装置
CN105488016B (zh) * 2014-09-16 2019-06-21 武汉联影医疗科技有限公司 web表格数据的选取方法及装置
CN105488016A (zh) * 2014-09-16 2016-04-13 武汉联影医疗科技有限公司 web表格数据的选取方法及装置
CN105786783A (zh) * 2014-12-23 2016-07-20 远光软件股份有限公司 一种web表格的数据处理方法及装置
CN106610774B (zh) * 2015-10-23 2020-03-31 北京国双科技有限公司 网页表格编辑方法及装置
CN106610774A (zh) * 2015-10-23 2017-05-03 北京国双科技有限公司 网页表格编辑方法及装置
CN106610923A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 用于网页表格的单元格的撤销方法及装置
CN106610924A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 用于网页表格的单元格的撤销方法及装置
CN106610925A (zh) * 2015-10-26 2017-05-03 北京国双科技有限公司 网页表格的显示方法及装置
CN107679238A (zh) * 2017-10-27 2018-02-09 杭州迪普科技股份有限公司 一种新建对象方法及装置
CN107679238B (zh) * 2017-10-27 2020-10-09 杭州迪普科技股份有限公司 一种新建对象方法及装置
CN110472925A (zh) * 2018-05-11 2019-11-19 懿谷智能科技(上海)有限公司 一种基于网页流程图的实验室测试流程管理系统及方法
CN109189789B (zh) * 2018-08-22 2021-02-05 苏州浪潮智能科技有限公司 一种用于显示表格的方法和装置
CN109189789A (zh) * 2018-08-22 2019-01-11 郑州云海信息技术有限公司 一种用于显示表格的方法和装置
CN109375977A (zh) * 2018-10-15 2019-02-22 郑州云海信息技术有限公司 一种实现页面表格编辑的方法及装置
CN109491574A (zh) * 2018-10-26 2019-03-19 中国工商银行股份有限公司 包含表格的页面交互装置及方法

Similar Documents

Publication Publication Date Title
CN1395193A (zh) 在网页上生成动态可编辑表格的方法
US7624114B2 (en) Automatically generating web forms from database schema
US8001490B2 (en) System, method and computer program product for a content publisher for wireless devices
JP4515461B2 (ja) データ処理装置およびデータ処理方法
JP4515462B2 (ja) データ処理装置およびデータ処理方法
JP4435177B2 (ja) データ処理装置およびデータ処理方法
US20090198714A1 (en) Document processing and management approach for reflecting changes in one representation of a document to another representation
JP4515463B2 (ja) データ処理装置およびデータ処理方法
TW526430B (en) Method for generating dynamically editable table on web page
WO1996028778A1 (en) Automation of tasks using graphical and multimedia macros
JP3944014B2 (ja) 文書編集方法、文書編集システム及び文書処理プログラム
WO2006051975A1 (ja) 文書処理装置
US20060195426A1 (en) Information management apparatus, information management method, and information management program
JPWO2006120926A1 (ja) 入力フォーム設計装置および入力フォーム設計方法
WO2006051904A1 (ja) データ処理装置およびデータ処理方法
JPWO2006051721A1 (ja) 文書処理装置及び文書処理方法
CN111859886A (zh) 一种基于产品原型界面的文档生成方法和装置
WO2007105364A1 (ja) 文書処理装置及び文書処理方法
WO2006051868A1 (ja) 文書処理装置及び文書処理方法
JP2008225932A (ja) データ処理装置及びデータ処理方法
JP2009059250A (ja) データ処理装置及びデータ処理方法
WO2006051720A1 (ja) 文書処理装置、文書処理方法、及び電子メール処理装置
WO2001031427A1 (en) Method and system for automatically generating an application program based upon data characteristics
CN1138204C (zh) 异质信息浏览器的系统及方法
Xiong et al. Research on General Data Layer Components Model based on Data-Driven

Legal Events

Date Code Title Description
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C02 Deemed withdrawal of patent application after publication (patent law 2001)
WD01 Invention patent application deemed withdrawn after publication