Skip to content

Commit 5120057

Browse files
Fix iteration index at containsName function (#289)
Co-authored-by: claudia <cmurialdo@gmail.com>
1 parent 488438b commit 5120057

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

java/src/main/java/com/genexus/webpanels/gridstate/GXGridStateHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ private int containsName(String filter) {
8585
SdtGridState_InputValuesItem value = values.nextElement();
8686
if (value.getgxTv_SdtGridState_InputValuesItem_Name().equalsIgnoreCase(filter))
8787
return idx;
88+
idx++;
8889
}
8990
return -1;
9091
}

0 commit comments

Comments
 (0)