added an override for FormPickerMultiCheckBoxElement output string generation #188
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Link
This addresses my own feature request HERE
Goals
See the feature request.
Implementation Details
multiCheckBox
block to test activity to illustrate my point, once you get past a certain size it doesn't make sense to show the full list. This is especially evident in some custom layouts, for example I'm stacking the Cell's title and value vertically, similar to how Android's system settings UI these days, where the value will only be in a single line.getSelectedItemsText()
, seemed a bit long for what its trying to do, so replaced it with a short version with Kotlin collection functions.displayNewValue
back to usingvalueAsString
so it seemed more consistent with the rest of the project, and madegetSelectedItemsText()
private.Testing Details
Didn't add any new tests.