After combobox loads data wj-glyph-down icon disappears, only happens on IE

Posted by: dharric on 12 November 2018, 8:03 am EST

  • Posted 12 November 2018, 8:03 am EST

    We are using the wijmo combox in multiple places in the app. However only when we load data into the combobox and also only on IE10 browsers the dropdown icon disappears after the data is loaded. Before the data is loaded the icon is visible. When I use the debug tools in IE I can see the icon is still there, but does not show for some reason.

  • Posted 12 November 2018, 8:05 am EST - Updated 3 October 2022, 11:18 am EST

  • Posted 12 November 2018, 8:07 am EST

    Combobox is fairly trivial code but here it is in jsx

    <ComboBox
                                    id="managerPakFundName"
                                    displayMemberPath="name"
                                    selectedValuePath="uid"
                                    itemsSource={this.state.funds}
                                    isRequired={Boolean(true)}
                                    selectedIndexChanged={this.fundChanged}
                                />
    componentDidMount = async () => {  
            this.clickSubmitBtn.current.disabled = true;
    
            const [hfResponse, currencyResponse] = await Promise.all([
                fetch('/api/HedgeFund', {
                    credentials: 'include',
                    cache: 'no-cache'
                }),
                fetch('/api/Reference/GetCurrencyList/true', {
                    credentials: 'include',
                    cache: 'no-cache'
                })]);
    
            if (hfResponse.ok && currencyResponse.ok) {
                const funds = await hfResponse.json();
                const currencies = await currencyResponse.json();
                this.setState({ funds, currencies });
                this.clickSubmitBtn.current.disabled = false;
            }
        }
    
    
  • Posted 12 November 2018, 8:16 pm EST

    Hi,

    We are unable to replicate the issue at our end.

    Could you please test the attached sample at your end and let us know if you are able to replicate the issue, if not please modify the sample to replicate the issue.

    Also please let us know your environment details such as Wijmo version, OS, Browser, React version so that we may test on the same environment.

    ~Sharad

    react-cb_ie10.zip

  • Posted 13 November 2018, 3:40 am EST

    Not sure why you think this is apples to apples. As I mentioned in my text the combobox is loaded from data from a network call. Please try your test that way and if it works send me that code.

  • Posted 13 November 2018, 3:24 pm EST

    We updated the sample to fetch data via a network but are still unable to replicate the issue.

    We have attached the updated sample please have a look at it and let us know if we need to change something in the sample in order to replicate the issue.

    Also please let us know your environment details such as Wijmo version, OS, Browser, React version so that we may test on the same environment.

    ~Sharad

    react-cb_ie10_update.zip

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels