jQuery UI Widgets › Forums › Dialogs and Notifications › Window › Combobox not working in Window(ie7)
Tagged: combobox in window, dropdownlist in window, window
This topic contains 5 replies, has 2 voices, and was last updated by agnora 13 years ago.
-
Author
-
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….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 StoevjQWidgets Team
http://www.jqwidgets.comThanks 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!!!image link here!!
http://python-jin.blogspot.com/2012/04/jqxwindow-ie7-bug.html
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 StoevjQWidgets Team
http://www.jqwidgets.comThanks 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*/
} -
AuthorPosts
You must be logged in to reply to this topic.