Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add deselect* to AbstractSelect #865

Closed
howudodat opened this issue Oct 26, 2023 · 0 comments
Closed

Add deselect* to AbstractSelect #865

howudodat opened this issue Oct 26, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request version 2.x.x Version 2.x.x issues
Projects
Milestone

Comments

@howudodat
Copy link

Please add deselect functions to AbstractSelect so that I can programatically unselect an option:

  public C deselectAt(int index) {
    findOptionByIndex(index).ifPresent(this::onOptionDeselected);
    return (C) this;
  }
  public C deselectByKey(String key) {
    findOptionByKey(key).ifPresent(this::onOptionDeselected);
    return (C) this;
  }
  public C deselectByValue(T value) {
    findOptionByValue(value).ifPresent(this::onOptionDeselected);
    return (C) this;
  }

@vegegoku vegegoku self-assigned this Oct 26, 2023
@vegegoku vegegoku added enhancement New feature or request version 2.x.x Version 2.x.x issues labels Oct 26, 2023
@vegegoku vegegoku added this to To do in Domino UI via automation Oct 26, 2023
@vegegoku vegegoku added this to the 2.0.0-RC4 milestone Oct 26, 2023
@vegegoku vegegoku changed the title V2 add deselect* to AbstractSelect Add deselect* to AbstractSelect Oct 27, 2023
vegegoku added a commit that referenced this issue Oct 27, 2023
Domino UI automation moved this from To do to Done Oct 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request version 2.x.x Version 2.x.x issues
Projects
Domino UI
  
Done
Development

No branches or pull requests

2 participants