ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

javascript – 在单元格编辑中获取extjs中的行数据

2019-09-02 00:36:32  阅读:225  来源: 互联网

标签:javascript extjs


我正在创建一个Extjs网格.其中大部分列都是可编辑的.我需要的是,如果用户更改模糊的任何列值,我将调用我的方法根据其他列值进行一些计算.并将列值替换为计算值.code在这里.

var incomeTaxOverrideModel = new Ext.grid.ColumnModel([{
    id : 'fromDate',
    header : "From Date",
    dataIndex : 'fromDate',
    width : 80,
    renderer : drenderer,
    editor : this.fromDateEditor
}, {
    id : 'toDate',
    header : "To Date",
    dataIndex : 'toDate',
    width : 80,
    renderer : drenderer,
    editor : this.toDateEditor
}, {
    id : 'rawTax',
    header : "Raw Tax",
    dataIndex : 'rawTax',
    width : 80,
    align : 'right',
    selectOnFocus : true,
    editor : new Ext.form.NumberField({"blur":this.calculateTaxForword}),
    renderer : Gts.payItemRenderer()
}, {
    id : 'surcharge',
    header : "Surcharge",
    dataIndex : 'surcharge',
    width : 80,
    align : 'right',
    selectOnFocus : true,
    editor : new Ext.form.NumberField({}),
    renderer : Gts.payItemRenderer()
}, {
    id : 'cess',
    header : "Cess",
    dataIndex : 'cess',
    width : 80,
    align : 'right',
    selectOnFocus : true,
    editor : new Ext.form.NumberField({}),
    renderer : Gts.payItemRenderer()
}, {
    id : 'totalTax',
    header : "Total Tax",
    dataIndex : 'totalTax',
    width : 80,
    align : 'right',
    selectOnFocus : true,
    editor : new Ext.form.NumberField({}),
    renderer : Gts.payItemRenderer()
}, {
    id : 'taxAmount',
    header : "Taxable Income",
    dataIndex : 'taxAmount',
    width : 100,
    align : 'right',
    selectOnFocus : true,
    editor : new Ext.form.NumberField({}),
    renderer : Gts.payItemRenderer()
}, {
    id : 'remarks',
    header : "Remarks",
    dataIndex : 'remarks',
    width : 250,
    editor : new Ext.form.TextField({})
}, {
    id : 'modifiedDate',
    header : "Modified On",
    dataIndex : 'modifiedDate',
    width : 100,
    renderer : Ext.util.Format.dateRenderer('d M Y h:i:s A'),
    width : 150
}

]);

this.itoGrid = new Ext.grid.EditorGridPanel({
    store : this.itoStore,
    cm : incomeTaxOverrideModel,
    autoExpandColumn : 'remarks',
    autoScroll : true,
    containerScroll : true,
    frame : false,
    stripeRows : true,
    width : 830,
    height : 233,
    clicksToEdit : 1,
    layout : 'fit',
    loadMask : true,
    tbar : [this.addAction, this.deleteAction],
    trackMouseOver : true
});

我创建了方法

calculateTaxForword :function(){
    console.log(this.itoGrid) 
    //console.log(this.itoGrid.getStore().getModifiedRecords())
}

但它不会来.我必须根据原始tax.surcharge和cess计算价值所以我需要我的方法中的所有价值.如果这样做任何一个请帮助

解决方法:

CellEditing插件有一个可以监听的beforeedit事件:
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.plugin.CellEditing-event-beforeedit

这将使您可以访问以下内容:

Parameters
editor : Ext.grid.plugin.CellEditing
e : Object
An edit event with the following properties:

grid - The grid
record - The record being edited
field - The field name being edited
value - The value for the field being edited.
row - The grid table row
column - The grid Column defining the column that is being edited.
rowIdx - The row index that is being edited
colIdx - The column index that is being edited
cancel - Set this to true to cancel the edit or return false from your handler.
eOpts : Object - The options object passed to Ext.util.Observable.addListener.

标签:javascript,extjs
来源: https://codeday.me/bug/20190902/1787373.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有