`

jquery editable

    博客分类:
  • js
 
阅读更多

http://www.cnblogs.com/xiaoyao2011/archive/2012/04/28/jeditable.html

http://jquery-plugins.net/50-most-popular-jquery-plugins-from-2016

http://jquery-plugins.net/editable-table-editable-jquery-bootstrap-spreadsheet

http://jquery-plugins.net/jquery-ajax-file-uploader-with-drag-and-drop

http://jquery-plugins.net/demo/bootstrap-waitingfor-modal-dialog-with-progress-bar.html

 

http://www.jtable.org/Demo/PagingAndSorting

 

<script type="text/javascript">

    $(document).ready(function () {

        $('#StudentTableContainer').jtable({
            title: 'The Student List',
            paging: true, //Enable paging
            pageSize: 10, //Set page size (default: 10)
            sorting: true, //Enable sorting
            defaultSorting: 'Name ASC', //Set default sorting
            actions: {
                listAction: '/Demo/StudentList',
                deleteAction: '/Demo/DeleteStudent',
                updateAction: '/Demo/UpdateStudent',
                createAction: '/Demo/CreateStudent'
            },
            fields: {
                StudentId: {
                    key: true,
                    create: false,
                    edit: false,
                    list: false
                },
                Name: {
                    title: 'Name',
                    width: '23%'
                },
                EmailAddress: {
                    title: 'Email address',
                    list: false
                },
                Password: {
                    title: 'User Password',
                    type: 'password',
                    list: false
                },
                Gender: {
                    title: 'Gender',
                    width: '13%',
                    options: { 'M': 'Male', 'F': 'Female' }
                },
                CityId: {
                    title: 'City',
                    width: '12%',
                    options: '/Demo/GetCityOptions'
                },
                BirthDate: {
                    title: 'Birth date',
                    width: '15%',
                    type: 'date',
                    displayFormat: 'yy-mm-dd'
                },
                Education: {
                    title: 'Education',
                    list: false,
                    type: 'radiobutton',
                    options: { '1': 'Primary school', 
                               '2': 'High school', 
                               '3': 'University' }
                },
                About: {
                    title: 'About this person',
                    type: 'textarea',
                    list: false
                },
                IsActive: {
                    title: 'Status',
                    width: '12%',
                    type: 'checkbox',
                    values: { 'false': 'Passive', 'true': 'Active' },
                    defaultValue: 'true'
                },
                RecordDate: {
                    title: 'Record date',
                    width: '15%',
                    type: 'date',
                    displayFormat: 'dd.mm.yy',
                    create: false,
                    edit: false,
                    sorting: false //This column is not sortable!
                }
            }
        });

        //Load student list from server
        $('#StudentTableContainer').jtable('load');
    });

</script>

 

分享到:
评论

相关推荐

    jquery editable plugin--点击编辑文字插件

    2. **初始化插件**:通过jQuery选择器找到要使其可编辑的元素,然后调用插件方法进行初始化,如`$('element').editable(options);`,`options`是配置参数,用于定制插件行为。 3. **配置选项**:插件通常接受各种...

    jQuery插件editable

    **jQuery插件editable详解** jQuery插件editable是一个强大的前端开发工具,它允许用户直接在页面上编辑选定的HTML元素,如div、span或td等,从而实现动态内容更新。这个插件大大增强了用户体验,使静态网页变得...

    select选择框控件jquery-editable-select支持编辑输入

    在本主题中,我们将关注一个名为"jQuery Editable Select"的插件,它允许用户在选择框中直接编辑和输入。 jQuery Editable Select 是一个轻量级且高度可定制的插件,基于流行的JavaScript库jQuery构建。它提供了一...

    jquery-editable、jqueryUI-editable

    **jQuery Editable与jQuery UI Editable插件详解** 在网页开发中,为了提供更好的用户体验,交互式的元素变得越来越重要。jQuery Editable和jQuery UI Editable是两个非常实用的JavaScript插件,它们允许用户直接在...

    可编辑的select下拉框

    安装`jQuery Editable Select`插件非常简单,首先需要在项目中引入jQuery库,然后下载`jquery-editable-select`压缩包。在这个名为`jquery-editable-select-master`的压缩包中,通常包含以下文件: 1. `dist/`目录...

    jquery.editable-select插件使用案例

    此为jquery.editable-select插件的使用案例,这是一款非常好用的插件,好用之处:既可下拉框选择也可手动输入,而且手动输入还能对下拉框选项进行过滤,而且还可实现一些相关事件,具体请查看官方文档。

    jquery.editable-select.min的css与js

    《jQuery Editable Select:构建可输入可实时查询的下拉选择框》 在网页开发中,下拉选择框(dropdown)是一种常见的用户交互元素,它为用户提供了一种从预定义选项中选择的方式。然而,传统的HTML `&lt;select&gt;` 元素...

    jquery-editable-select:一个简单的jQuery插件,可将选择转换为带有建议的文本字段

    jQuery可编辑选择 jQuery Editable Select是一个jQuery插件,可将选择转换为输入字段,根据输入的字符实时显示单个元素。 当javascript不可用时,它会按比例缩小到实际的选择列表。演示版在此处查看演示: : 安装从 ...

    jquery.editable-select

    6. **压缩和非压缩版本**:提供的 `jquery.editable-select.js` 和 `jquery.editable-select.min.js` 分别是未压缩和压缩后的版本。在开发阶段,可以使用未压缩版方便调试,而在生产环境中,压缩版可以减少文件大小...

    jquery.editable

    《jQuery.editable:可编辑的Select框》 在Web开发中,我们经常遇到需要用户能够直接在页面上编辑数据的情况,比如下拉选择框(Select)中的选项。jQuery.editable库正是为此目的而设计的,它允许用户直接在Select...

    jquery.editable:jQuery插件,允许您编辑文本并获取旧值和新值

    **jQuery Editable 插件详解** `jQuery Editable` 是一个功能强大的JavaScript插件,它为网页中的文本元素提供了可编辑的功能。用户可以直接在页面上修改文本内容,并且能够捕获旧值(原始数据)与新值(修改后的...

    jquery-editable-select插件

    **jQuery Editable Select 插件详解** 在网页开发中,我们常常会遇到需要用户选择一个或多个选项的情况,这时下拉列表(select)是常见的交互元素。然而,标准的HTML select元素功能相对有限,不能满足一些高级交互...

    js 可输入下拉框(jquery)

    在JavaScript和jQuery的世界里,"js 可输入下拉框(jquery)"是一个常见的交互设计需求,它结合了传统下拉框的简洁性与输入框的搜索功能,为用户提供更友好的交互体验。这种组件通常被称为“Autocomplete”或...

    select下拉框插件jquery.editable-select详解

    &lt;link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery-editable-select@1.7.0/dist/jquery.editable-select.min.css"&gt; &lt;script src="https://code.jquery.com/jquery-3.x.y.min.js"&gt;&lt;/script&gt; ...

    jquery edittable 取色工具==

    在IT行业中,jQuery Editable Table是一种常见的前端技术,用于创建可编辑的数据表格。这个工具结合了jQuery库的强大功能,使得用户可以直接在表格中编辑数据,提供了丰富的交互性和灵活性。"jquery edittable 取色...

    editable select

    jQuery Editable Select是一款基于jQuery的插件,版本1.3.1,用于创建可编辑的下拉选择列表。它提供了一个用户友好的界面,用户可以点击下拉框并直接输入,或者从已有的选项中选择。这个插件的灵活性和易用性使其在...

    下拉菜单jquery.editable-select-master

    《深入解析jQuery.editable-select-master下拉菜单插件》 在网页开发中,下拉菜单是一种常见的交互元素,用于提供用户选择操作或展示大量数据。jQuery.editable-select-master是一款基于jQuery的可编辑下拉菜单插件...

    jQuery UI dialog IE6下处理select框被遮挡jquery.bgiframe.js

    jQuery UI dialog IE6下处理select框被遮挡jquery.bgiframe.js

    jquery.editable.lite.js:就地编辑JQuery插件

    JQuery Editable Lite插件 可以将HTML元素转换为可编辑文本字段的插件非常丰富,但是我发现其中大多数插件都很肿。 该插件的构建与在某种程度上与API兼容,但又轻巧又简单。 特征 支持文本区域字段和单行文本字段 ...

Global site tag (gtag.js) - Google Analytics