Browse Source
This problem happens only when we have a dropdown created from a select that loads remote content. In this scenario, we don't know in advance which choices will be available, so we start with a select without any options. When an choice is selected, module.set.value will try to set the select value, but it will fail, since there's no options. To fix this, module.set.value will add a new option to the select, before setting the value. This will be done only if the dropdown input is a select and if we are dealing with remote loaded content.pull/2573/head
Davi Alexandre
9 years ago
1 changed files with 6 additions and 0 deletions
Loading…