修改进度模块
This commit is contained in:
@@ -139,11 +139,11 @@
|
|||||||
|
|
||||||
function onGridAfterEdit(event, value, params) {
|
function onGridAfterEdit(event, value, params) {
|
||||||
var me = this, columnId = params.columnId, rowId = params.rowId;
|
var me = this, columnId = params.columnId, rowId = params.rowId;
|
||||||
var str = F(hdIdClientID).ooIl1;
|
var str = F(hdIdClientID).getValue();
|
||||||
if (str == undefined) {
|
if (str == undefined || str == '') {
|
||||||
str = rowId;
|
str = rowId;
|
||||||
}
|
}
|
||||||
else {
|
else if(str.indexOf(rowId) == -1){
|
||||||
str = str + "," + rowId;
|
str = str + "," + rowId;
|
||||||
}
|
}
|
||||||
F(hdIdClientID).setValue(str);
|
F(hdIdClientID).setValue(str);
|
||||||
|
|||||||
Reference in New Issue
Block a user