|
Title: as referring to a column to add their values Post by: pedroc on May 22, 2015, 06:16:17 AM I want to do is something like this
onBeginEdit:function(rowIndex){ var editors = $('#dg').datagrid('getEditors', rowIndex); var n = []; for (var i = 0; i < 8; i++) n = $(editors.target); n[1].numberbox({ onChange:function() { var len = $('#dg').datagrid('getRows').length; //here I need to go to a particular column of the DataGrid and adding all values for (var i = 0; i < len; i++) { SumatoriaSBC += parseFloat(???.numberbox('getValue')); } |