Topic: Select is malfunctioning in MDB Standard 9.0.0
LeeHoLim
priority
asked 1 day ago
*Expected behavior*Should see the dynamically added options in Select.
*Actual behavior*Only options that have been statically added to Select are displayed.
Resources (screenshots, code snippets etc.)
I loaded the mdb with the UMD method.
<select data-mdb-select-init id="mySelect" name="mySelect">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<script>
$(function(){
const mySelect = $('#mySelect');
mySelect.append(`<option value="4">Four</option>`);
mySelect.append(`<option value="5">Five</option>`);
});
</script>
In version 8.2.0 of MDB Standard, two additional options appeared on the page.However, after upgrading to version 9.0.0, the two dynamically added options are not displayed in Select.
Of course, if we remove data-mdb-select-init from the select's attribute and call the new mdb.Select(mySelect[0]); method, all five options will show up just fine, but the website is large and we can't modify every page.
It's too risky to upgrade versions based on the changelog alone.Is it possible to make it work as before in version 9.0.0?
LeeHoLim
priority
answered 1 day ago
If it's a bug, is version 9.0.1 coming soon? I haven't deployed it to production servers yet, just testing.
Kamila Pieńkowska
staff
answered 1 day ago
I'm sorry but this is a bug that was introduced in the 9.0.0 version. As we do not have update method for select there is no way to update option list.
LeeHoLim priority commented 1 day ago
If it's a bug, is version 9.0.1 coming soon? I haven't deployed it to production servers yet, just testing.
Kamila Pieńkowska staff commented 22 hours ago
We do not provide dates or content for future releases beforehand.
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- ForumUser: Priority
- Premium support: Yes
- Technology: MDB Standard
- MDB Version: MDB5 9.0.0
- Device: Mac book
- Browser: Chrome 134.0.6998.166
- OS: MAC OS
- Provided sample code: No
- Provided link: No
LeeHoLim priority commented 1 day ago
Is there a way to update just Option separately if Select is already initialized?