Open davidgiga1993 opened 4 months ago
🤖 Hello @davidgiga1993
Your issue will be analyzed and is part of our internal workflow. To get informed about our workflow please checkout the Contributing Guidelines
JIRA: IX-1502
@davidgiga1993 in the meantime i think you can use the click event on IxSelectItem to know what value was selected
// ...
<IxSelectItem label="Item 1" value="1" @click="onValueChange('1')"></IxSelectItem>
<IxSelectItem label="Item 2" value="2" @click="onValueChange('2')"></IxSelectItem>
<IxSelectItem label="Item 3" value="3" @click="onValueChange('3')"></IxSelectItem>
<IxSelectItem label="Item 4" value="4" @click="onValueChange('4')"></IxSelectItem>
// ...
Prerequisites
What happened?
When using
IxSelect
I can't seem to get any change events. I've tried multiple combination of events:however none of those get triggered when selecting an item.
Am I doing something wrong or is this a bug?
What type of frontend framework are you seeing the problem on?
Others
Which version of iX do you use?
2.4.1
Code to produce this issue.