如何在extjs可编辑网格数据中编辑值时删除脏标志?

时间:2018-01-16 14:53:35

标签: javascript json extjs extjs6

extjs可编辑网格数据网格具有以下名为

的json数据

data.json

{
  "rows" : [ {
    "record_id" : 101,
  }, {
    "record_id" : 102,
    "data" : "",
  }, {
    "record_id" : 103,
    "data" : 62,
  }, {
    "record_id" : "104",
    "data" : "62",
  } ]
}

在通过单元格进行制表时,某些数据单元显示为脏标志。实际上,没有任何数据从用户的角度改变。这是一个演示。当然,有数据缺失,或字符串或整数类型混合。这种情况发生在现实生活中,因为用户不关心编程类型等。问题是如何清理脏标志,因为实际上没有更改数据,并且在提交时,所有类型的数据都做没有出现在getChanges()?如果发生任何数据更改,例如62到625,它应该显示脏标志;如果向后反转,例如625到62,则在点击“保存”之前,它不应显示脏标志。

enter image description here

以下是与测试相关的其他文件。

data.html

<!-- <!DOCTYPE html> -->
<html>
<head>
<meta name="google" content="notranslate" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10, user-scalable=yes">
<title>Gride Data Testing</title>

<script type="text/javascript" src="https://examples.sencha.com/extjs/6.5.1/examples/classic/shared/include-ext.js"></script>
<script type="text/javascript" src="https://examples.sencha.com/extjs/6.5.1/ext-all-debug.js"></script>
<script type="text/javascript" src="https://examples.sencha.com/extjs/6.5.1/examples/classic/shared/options-toolbar.js"></script>

<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/classic/theme-triton/resources/theme-triton-all.css">

<script type="text/javascript" src="data-ext-0.js"></script>

</head>
<body>

<div id="grid-example"></div>

</body>
</html>

data-ext.js

Ext.require([
  'Ext.grid.*',
  'Ext.data.*',
  'Ext.util.*',
  'Ext.state.*' ]);

Ext.onReady(function() {

  var myStore = Ext.create('Ext.data.JsonStore', {
    // http://docs.sencha.com/extjs/6.0.2/modern/Ext.grid.column.Column.html
    storeId : 'myStore_data',
    autoLoad : true,
    autoDestroy : true,
    proxy : {
      type : 'ajax',
      url : 'data.json',  // the file is defined as the above
      reader : {
        type : 'json',
        keepRawData : true,
        rootProperty : 'rows'
      }
    },
  });

  var grid = Ext.create('Ext.grid.Panel', {
    store : Ext.data.StoreManager.lookup('myStore_data'),
    columnLines : true,
    border : true,
    title : 'Grid Data Testing',
    columns : [ {
      text : "Record ID",
      dataIndex : "record_id",
      width : 200,
      format : '0',
      editor : {
        xtype : 'numberfield',
        allowBlank : true,
        allowNull : true,
      }
    }, {
      text : "Data",
      dataIndex : "data",
      width : 200,
      format : '0',
      editor : {
        xtype : 'numberfield',
        allowBlank : true,
        allowNull : true,
      }
    } ],
    selModel : {
      selType : 'cellmodel'
    },
    height : 230,
    width : 402,
    title : 'Grid Data Testing',
    renderTo : 'grid-example',
    viewConfig : {
      stripeRows : true
    },
    plugins : {
      cellediting : {
        clicksToEdit : 1
      }
    }
  });
});

1 个答案:

答案 0 :(得分:1)

您需要在编辑后提交数据,您可以在celleditor插件的edit event上执行此操作:

我添加了一个控件,只有当start和new值相同时才提交,所以如果我更改单元格中的值,则不会提交记录

如果值为null,则还需要检查originalValue和value是否为空

如果您不需要提交,则可以使用此解决方法。 record.set方法不是由网格细胞标记计算的。

   cellediting: {
                clicksToEdit: 1,
                listeners: {
                    edit: function (editor, context, e) {
                        if (context.originalValue === context.value ||
                        (!context.originalValue && !context.value)) {
                            context.record.set(context.field,context.value);
                            context.record.set(context.field,context.originalValue);
                        }
                    }
                }
            }

here you can see a working fiddle

代码已更新