Skip to content

Commit

Permalink
fix(android): picker "change" event not returning row titles from "se…
Browse files Browse the repository at this point in the history
…lectedValue"

Fixes TIMOB-28460
  • Loading branch information
jquick-axway authored and sgtcoolguy committed May 26, 2021
1 parent 5c5260f commit d527d0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ public void fireSelectionChange(int columnIndex, int rowIndex)
for (int i = 0; i < columnCount; i++) {
PickerRowProxy rowInColumn = getSelectedRow(i);
if (rowInColumn != null) {
selectedValues.add(rowInColumn.toString());
selectedValues.add(rowInColumn.getTitle());
} else {
selectedValues.add(null);
}
Expand Down

0 comments on commit d527d0f

Please sign in to comment.