The defaulting of combo is mostly achieved by setting the initializer of the attribute it’s bound to, but this only works in Add/Edit scenarios not search/query forms.
Below is how you would set the default selection on a combobox
(define defaultValue “test”) <– Not this will most probably be the enum object
(define comboModel ((this’findView ‘(filterCombo))’collectionModel))
(comboModel’currentIndex (comboModel’find defaultValue))