`
wangyihust
  • 浏览: 445530 次
文章分类
社区版块
存档分类
最新评论

使用os3grid操作Html 表格

阅读更多

       os3grid 开源,目前version 为0.6,功能和界面都还可以,扩展也较方便,平台通用性很强。主要使用javascript脚本语言操纵Grid。

 

Demo实例:

<html>
<head>
    <link type="text/css" rel="stylesheet" href="os3grid.css" />
    <script src="os3grid.js" type="text/javascript"></script>
    <script src="form_validators.js" type="text/javascript"></script>
</head>
<body >
    我的os3grid测试<br>
    <div id="grid"></div>
   
<script type="text/javascript">
               function val_changed ( grid, x, y, new_val )
    {
     alert ( "On grid: " + grid.id + " x: " + x + " y: " + y + " - value changed to: " + new_val );
    }
    
    //txt: ”Plain” cell content to be manipulated before output.
    function bold_render( txt )
    {
     return '<span style="font-weight: bold; color: red;">' + txt + '<\/span>';
    }
    
     // Create an OS3Grid instance
    var g = new OS3Grid ();

    // Grid Headers are the grid column names
    g.set_headers ( 'feat.no', 'Name', 'Descr', 'Importance' );

    // If contents is bigger than container, Grid will automatically show scrollbars
    g.set_scrollbars ( true );

    // The grid will have a solid border (these are CSS attributes)
    g.set_border ( 1, "solid", "blue" );

    // Now, we add some rows to the grid
    g.add_row ( 1, 'Layout', 'OS3Grid looks like a standard spreadsheet grid', 10 );
    g.add_row ( 2, 'Row Colors', 'You can change the colors of every singular row in the grid', 5 );
    g.add_row ( 3, 'Sorting', 'Rows can be sorted ascending or descending by clicking on column names', 15 );

    // Enable sortable rows
    g.set_sortable ( true );

    // Enable highlight of rows with the mouse
    g.set_highlight ( true );
    
    //第1列居中,第4列居右
    g.set_col_align ( 0, "center" );
    g.set_col_align ( 3, "right" );
    
    g.set_col_editable ( 1, "txt" );
    g.set_col_editable ( 2, "txt" );
    g.set_col_editable ( 3, "txt" );
    
    /*
    OS3Grid cell data can be manipulated before being output to the browser. To do
    so, you simply have to define a column renderer, a JavaScript funtion that will
    be called by the OS3Grid itself each time it needs to render some data inside a
    given cell of a specific column.
    */
    g.set_col_render ( 1, bold_render );    //第1列,bold_render为js函数
    
    //on_change callback
    g.onchange = val_changed;
    
    //chars: A string containing all the chars that the user can input inside the column edit box.
    g.set_col_valid_chars ( 3, "0123456789" );   //第4列只能输入0123456789几个字符的子集
    
    g.set_col_validation ( 3, check_integer );   //判断第4列的输入是否合法,check_integer为js函数
    
    g.resize_cols = true;

    g.sort_on_edit = true;
    
    // Show the grid replacing the original HTML object with the "grid" ID.
    g.render ( 'grid' );
    
    
    //取得表格中的数据,这样我们可以将表格中的数据序列化或写入持久化(xml or 数据库)
     var i, data;

                 for ( i= 0; i < g.length (); i ++ )
                 {
                     data = g.get_row (i );
                     alert(data[0]);
                  }
</script>
</body>
</html>

下载:http://os3grid.sourceforge.net,将几个css和js文件拷到对应目录下。

分享到:
评论

相关推荐

    UniGui中使用Grid+Report报表控件

    在 UniGui 框架中,`Grid+Report` 报表控件是用于数据展示和分析的强大工具,尤其适用于创建复杂的数据表格和报告。本文将深入探讨如何在 UniGui 中有效利用 `Grid` 和 `Report` 控件,以及它们在实际应用中的各种...

    RF框架使用介绍.zip

    3. **编写测试用例**:使用RF的表格语法,定义测试用例和步骤,使用关键字来执行各种操作。 4. **执行测试**:运行测试套件,RF框架会执行所有测试用例并记录结果。 5. **分析报告**:检查生成的HTML报告,了解...

    python gui tkinter

    Tkinter库功能强大,能够满足基本的GUI设计需求,并且可以运行在多数操作系统上,包括Windows、Linux和Mac OS。 在Tkinter库中,TreeView控件是功能非常强大的组件,它能够以树状形式显示信息,常用于展示层次化的...

    Silverlight基础教程.pdf

    Canvas 使用绝对定位,StackPanel 允许元素水平或垂直排列,而 Grid 则通过行和列来定义布局,类似于 HTML 表格。通过这些布局控件,开发者可以创建复杂的用户界面,这些界面能够响应不同大小的屏幕和窗口。 XAP ...

    Web设计师的50个超便利工具.pdf

    6. Mac OS X Photoshop: 虽然Photoshop通常与Adobe的Mac OS X版本一起使用,但此处可能是指在Mac平台上使用的Photoshop版本。它是一个强大的图像编辑和设计软件。 7. gridrbuildrrr: 这可能是一个设计工具,用于...

    DevExpress VCL 2011 vol 2.6 .7z

    这些组件可以方便地添加到Delphi或C++Builder项目中,提供了一系列预构建的UI元素和功能,如表格、图表、报表、菜单等,使得开发者可以快速创建专业级别的应用界面。 2. **2011年版**: 这个版本发布于2011年,可能...

    PL_SQL Dev7.0教程

    - **操作系统**: 支持 Windows、Linux 和 Mac OS X。 - **Oracle 客户端**: 至少需要 Oracle 8i 或更高版本的客户端。 - **内存**: 推荐至少 512MB RAM。 - **硬盘空间**: 至少需要 50MB 可用空间用于安装。 ##### ...

Global site tag (gtag.js) - Google Analytics