jQuery UI Widgets Forums Lists DropDownList IE 8 dropdown list problem

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 12 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • IE 8 dropdown list problem #2975

    AceDZN
    Member

    IE8 doesn’t display option text, instead it shows the value of the option. Chrome, Firefox, Opera and Safari show the text correctly.

    for example:

    <select name="direction" auto="1" id="buyselloption" >
    <option value="0">Buy</option>
    <option value="1">Sell</option>
    </select>

    the script I’ve used is:

    $('#buyselloptiondiv').jqxDropDownList('loadFromSelect', 'buyselloption');
    IE 8 dropdown list problem #2999

    Peter Stoev
    Keymaster

    Hi AceDZN,

    I tested the DropDownList with the provided code and confirm that the value is displayed.

    You can populate the DropDownList also by using the following code:

                    var source = 
    [
    {value: 0, label: "Sell"},
    {value: 1, label: "Buy"}
    ];
    // Create a jqxDropDownList
    $("#jqxWidget").jqxDropDownList({ source: source, selectedIndex: 1, width: '200', height: '25' });

    The reported by you issue will be fixed in the next update.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.