ComboBox options not selectable in GridPanel, when editable in OverOnly mode

  1. #1

    ComboBox options not selectable in GridPanel, when editable in OverOnly mode

    When mousing over the field in the row, the ComboBox becomes editable. However, when you click to display the list, and move your mouse down to select one of the options, the ComboBox is no longer editable and is filled with the value "null", before you can click on a list item. Clicking on a list item at this point has no effect.

    Using the code:
    columnModel.Add(Html.X().ComponentColumn().Text("State").DataIndex("STATE").Editor(true).OverOnly(true).Component(Html.X().ComboBox()
        .Items(states => { ... } )));
  2. #2
    You have to set for ComponentColumn
    
    PinEvents="expand"UnpinEvents="collapse"
    like in the following sample
    https://examples2.ext.net/#/GridPane...n/Over_Editor/
  3. #3
    Thank you. That solved it.

Similar Threads

  1. [CLOSED] ComboBox in Editable GridPanel
    By ljcorreia in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 29, 2011, 3:00 PM
  2. Replies: 3
    Last Post: Jun 03, 2011, 12:10 PM
  3. [CLOSED] GridPanel - how to make text in cells selectable?
    By wagger in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: May 05, 2011, 3:49 PM
  4. [CLOSED] GridPanel not selectable
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 11, 2011, 5:05 PM
  5. Replies: 1
    Last Post: Jun 29, 2010, 9:44 AM

Tags for this Thread

Posting Permissions