Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ComboBox and recordEnabledProperty problem

    Greetings,

    I was under the impression that the ComboBox item used listgridrecords, and so I was hoping to use recordEnabledProperty so that I could set records disabled server-side while the user was doing a type ahead search. Is this not the case? I am unable to make it work.

    #2
    The combobox drop down list is indeed a subclass of ListGrid -- it's a PickListMenu instance.

    The generated drop down list can be customized via comboBoxItem.pickListProperties, (so you could set the recordEnabledProperty, or various other properties there, and they'll be applied to the pickList).

    However it's not clear from your description whether this is going to give you the behavior you need or not.
    If this doesn't give you enough to get going - best to back up and describe exactly what your desired behavior is

    Comment

    Working...
    X