Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8102042

Add "multiSelect" and "selectedIndex" properties to ListView

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Duplicate
    • Icon: P3 P3
    • 8
    • fx2.0.2
    • javafx
    • None

      ListView should provide convenience methods for setting the selection mode and selected index, like JList does in Swing. Among other things, this would make it easier to work with ListViews in FXML:

      <ListView multiSelect="true" selectedIndex="0"/>

      For comparison, the list view controls in other common UI toolkits provide similar properties:

      Flex:
      <s:List allowMultipleSelection="true" selectedIndex="0"/>

      WPF:
      <ListBox SelectionMode="Multiple" SelectedIndex="0">

      HTML:
      <select id="mySelect" multiple="multiple">

      <script>
      document.getElementById("mySelect").selectedIndex = 0;
      </script>

      These properties should probably be mirrored in TableView as well, and ChoiceBox should probably support the "selectedIndex" property.

            jgiles Jonathan Giles
            gkbrown Greg Brown (Inactive)
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: