Skip to content

Commit

Permalink
Merge pull request #49 from ba-st/select-option-command
Browse files Browse the repository at this point in the history
Add to the single selection web view the posibility to add a custom
  • Loading branch information
gcotelli authored Jan 22, 2021
2 parents 3f8b47f + 42e7e44 commit 5a6125c
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ ComponentSummaryStepWebView >> initializeCheckboxView [

{ #category : #initialization }
ComponentSummaryStepWebView >> initializeDropDownListView [
dropdown := DropDownListWebView applying: [ :theDropdown | ].

dropdown allowAnyOf:
#('Smartphone' 'Tablet' 'Destkop' 'Notebook' 'Arduino')
dropdown := SingleSelectionWebView
dropDownListApplying: [ ]
applyingToOptions: [ ].
dropdown
allowAnyOf: #('Smartphone' 'Tablet' 'Destkop' 'Notebook' 'Arduino')
]

{ #category : #initialization }
Expand Down

0 comments on commit 5a6125c

Please sign in to comment.