0

我需要为“活动”列显示一个复选框,当我更改选择以便能够发出 ajax 请求时,更新数据库。

一些示例代码将对我有很大帮助。

谢谢。

4

2 回答 2

0

请检查此链接:Extjs Grid 插件。您可以检查第二个网格的来源。

您还需要为网格的选择模型侦听“selectionchange”事件 - 因此您将选择行,然后您可以向服务器或您需要的任何内容提交请求。


如果您需要特定列(不是第一个) - 您可以查看此链接:网格中的复选框


我认为这里也一样:如何将复选框列添加到 Extjs Grid

于 2011-07-11T14:15:23.897 回答
0

这是我的一个项目的示例:

Ext.define('Magellano.view.news.List' ,{
    extend: 'Ext.grid.Panel',
    alias : 'widget.newslist',

    store: 'News',
    remoteSort: false,

    dockedItems: [{
      xtype: 'toolbar',

      items: [{
        text: 'Online',
        id: 'online-button',
        enableToggle: true,
        icon: '/images/light-bulb.png',
        pressed: true,
        handler: onItemToggle 
      }, { text: 'Preview',
        id: 'preview-button',
        enableToggle: true,
        pressed: true
      }],

    initComponent: function() {
      this.selModel = Ext.create('Ext.selection.CheckboxModel', {
        singleSelect: false,
        sortable: false,
        checkOnly: true
      });

      this.columns = [
        { text: '', width: 28, renderer: function(val) { return "<img src='/images/star-empty.png' height='16' width='16'></img>"}},
        { text: 'Date', width: 60, dataIndex: 'newstime', renderer: renderDate},
        { text: 'Agency', width: 60, dataIndex: 'agency',  renderer: function(val) { return val;}},
        { text: 'Category', width: 60, dataIndex: 'category',  renderer: function(val) { return val;}},
        { text: 'Title', flex: 1, dataIndex: 'title', 
          renderer: function(val) { return Ext.String.format('<b>{0}</b>', val); }
        }
      ];

          this.title = "News from " + Ext.Date.dateFormat(new Date(), "j M Y");
          this.callParent(arguments);
        }
}

重要的部分是在 initComponent 中创建选择模型:

  this.selModel = Ext.create('Ext.selection.CheckboxModel', {
    singleSelect: false,
    sortable: false,
    checkOnly: true
  });
于 2011-07-11T17:34:56.080 回答