jQuery UI Widgets Forums Dialogs and Notifications Window Combobox not working in Window(ie7)

This topic contains 5 replies, has 2 voices, and was last updated by  agnora 13 years ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
  • Combobox not working in Window(ie7) #3155

    agnora
    Participant

    i made a jqxWindow for editing row data.
    Window have input, dropdownlist, combobox and several elements.

    Window works very well at sapari, opera, crome
    BUT NOT working at IE7.(sigh)
    Dropdownlist and ComboBox’s collapse button not working….

    Combobox not working in Window(ie7) #3156

    Peter Stoev
    Keymaster

    Hi agnora,

    I tried to reproduce this without avail. Could you send us a source code which illustrates the reported issue?

    Looking forward to your reply.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Combobox not working in Window(ie7) #3162

    agnora
    Participant

    Thanks your very quick replies..Peter,

    I sorry about my post… that bug not ie9
    it bugged at ie7.

    I checked again after post.
    sapari ok
    google ok
    firefox ok
    ie9 ok
    ie8 ok
    ie7 not working!!!

    Combobox not working in Window(ie7) #3166

    agnora
    Participant
    Combobox not working in Window(ie7) #3168

    Peter Stoev
    Keymaster

    Hi agnora,

    Thank you for the feedback

    I was able to reproduce the issue with IE7 and I confirm it. This is an issue regarding the Popup’s Z-Index. The reported issue will be fixed for the upcoming release which is scheduled for 06-April-2012.

    As a temporary workaround until the next release, you can try the code below:

       var zIndexNumber = 1000;
    $('div').each(function() {
    $(this).css('zIndex', zIndexNumber);
    zIndexNumber -= 10;
    });

    Best Wishes,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Combobox not working in Window(ie7) #3179

    agnora
    Participant

    Thanks Peter,

    works well at ie7

    i found this problem..at all browser..

    ComboBox Vertical-align Problem in jqxWindow

    base.css

    /*applied to the ComboBox’s input field.*/
    .jqx-combobox-input
    {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    padding: 0 0 0 0;
    outline: none;
    background: #FFFFFF;
    border: 0px solid #aaaaaa;
    font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
    font-size: 13px;
    }

    my temp solution

    /*applied to the ComboBox’s input field.*/
    .jqx-combobox-input
    {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    padding: 0 0 0 0;
    outline: none;
    background: #FFFFFF;
    border: 0px solid #aaaaaa;
    font-family: Verdana,Arial,sans-serif /*{ffDefault}*/;
    font-size: 13px;
    height: 15px; /*temp*/
    }

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

You must be logged in to reply to this topic.