Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1077,6 +1077,8 @@
return false;
};

var variablesCount = 0;

/**
* Loads the specified variable registry.
*
Expand All @@ -1085,7 +1087,6 @@
*/
var loadVariables = function (variableRegistry, variableToSelect) {
if (nfCommon.isDefinedAndNotNull(variableRegistry)) {
var count = 0;
var index = 0;

var variableGrid = $('#variable-registry-table').data('gridInstance');
Expand All @@ -1098,7 +1099,7 @@
$.each(variableRegistry.variables, function (i, variableEntity) {
var variable = variableEntity.variable;
variables.push({
id: count++,
id: variablesCount++,
hidden: false,
canWrite: variableEntity.canWrite,
name: variable.name,
Expand Down Expand Up @@ -1452,9 +1453,8 @@

if (matchingVariable === null) {
// add a row for the new variable
var id = variableData.getLength();
variableData.addItem({
id: id,
id: variablesCount,
hidden: false,
canWrite: true,
name: variableName,
Expand All @@ -1476,9 +1476,10 @@
variableData.reSort();

// select the new variable row
var row = variableData.getRowById(id);
var row = variableData.getRowById(variablesCount);
variableGrid.setActiveCell(row, variableGrid.getColumnIndex('value'));
variableGrid.editActiveCell();
variablesCount++
} else {
// if this row is currently hidden, clear the value and show it
if (matchingVariable.hidden === true) {
Expand Down Expand Up @@ -1654,4 +1655,4 @@
return showVariables(processGroupId);
}
};
}));
}));