Frontmatter
| id | 4269 |
| title | field.Select: When clicking on the SelectField area other than the icon, the selectList/picker shows only the 1 item that is selected |
| state | Closed |
| labels | bug |
| assignees | [] |
| createdAt | Apr 11, 2023, 10:34 AM |
| updatedAt | Apr 13, 2023, 10:31 AM |
| githubUrl | https://github.com/neomjs/neo/issues/4269 |
| author | alberthashani |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Apr 13, 2023, 10:31 AM |

Describe the bug field.Select: When clicking on the Select area other than the icon, the selectList/picker shows only the 1 item that is selected.
To Reproduce Steps to reproduce the behavior:
Config of the select field: { module: Select, cls: [ 'col-10-13'], placeholderText: 'Sort...', clearable: false, hideLabel: true, showOptionalText: false, required: false, editable: false, value: Neo.sortSelectedValue ? Neo.sortSelectedValue : null, listeners: { select: 'onSortFieldSelect' }, store: { data: [ { id: '1', name: 'A-Z' }, { id: '2', name: 'Z-A' } ] } }