3

Ext.grid.GridPanel を作成しています。xtype: button列モデルに列を追加しようとしています。でも、それができるかどうかはわかりません。以下は私のコードであり、これはjsfiddle http://jsfiddle.net/bXUtQ/へのリンクでもあります

私はextjs 3.4を使用しています

Ext.onReady(function () {
  var myData = [[ 'Lisa', "lisa@simpsons.com", "555-111-1224"],
                [ 'Bart', "bart@simpsons.com", "555-222-1234"],
                [ 'Homer', "home@simpsons.com", "555-222-1244"],
                [ 'Marge', "marge@simpsons.com", "555-222-1254"]];

  var store = new Ext.data.ArrayStore({
    fields:[ {
      name: 'name'
    },
    {
      name: 'email'
    },
    {
      name: 'phone'
    }],
    data: myData
  });
  var grid = new Ext.grid.GridPanel({
    renderTo: 'grid-container',
    columns:[ {
      header: 'Name',
      dataIndex: 'name'
    },
    {
      header: 'Email',
      dataIndex: 'email'
    },
    {
      header: 'Phone',
      dataIndex: 'phone'
    },
    {
        header: 'action',
        xtype: 'actioncolumn',
        iconCls: 'delete-icon'
        text: 'Delete',
        name: 'deleteBtn',
        handler: function(grid, rowIndex, colIndex, item, e) {
            alert('deleted');
        }      
    },             

    //////////////////////////////
    //I cannot add this column
    {
        header: 'action',
        xtype: 'button',
        text: 'update',
        name: 'btnSubmit'
    }
    ],
    store: store,
    frame: true,
    height: 240,
    width: 500,
    title: 'Framed with Row Selection',
    iconCls: 'icon-grid',
    sm: new Ext.grid.RowSelectionModel({
      singleSelect: true
    })
  });
});
4

3 に答える 3

0

そのようにボタンを列として使用することはできません。私たちは次の UX を使用して、まさにあなたが求めていることを実現しています。残念ながら、これは ExtJS 4.1 用です。

http://www.sencha.com/forum/showthread.php?148064-Component-Column-Components-in-Grid-Cells

于 2013-03-13T15:49:49.100 に答える
0

Grid RowActionsを試すことができます。

于 2013-04-27T22:12:15.003 に答える