Basically, I've got the following:
.AjaxComboBoxWindowsStyle
{
position: relative;
}
.AjaxComboBoxWindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer, .AjaxComboBoxWindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer
{
padding: 0 !important;
}
.AjaxComboBoxWindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer input
{
margin: 0;
border: solid 1px #7F9DB9;
border-right: 0px none;
padding: 0px 0px 0px 0px;
font-size: 13px;
height: 19px !important;
}
.AjaxComboBoxWindowsStyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button
{
margin: 0;
padding: 0;
background-image: url(Img/ComboBox/windows-arrow.gif);
background-position: top left;
border: 0px none;
height: 21px !important;
width: 21px !important;
}
.AjaxComboBoxWindowsStyle .ajax__combobox_itemlist
{
border-color: #7F9DB9;
position: absolute !important;
left: -173px !important;
top: 22px !important;
width: 171px !important;
}
<asp:Panel id="divItem" class="lrgModalWrap" style="display: block;" runat="server">
<ajaxToolkit:ComboBox ID="cmbEmployees" CssClass="AjaxComboBoxWindowsStyle" runat="server" AutoPostBack="False" DropDownStyle="DropDown" AutoCompleteMode="SuggestAppend"
CaseSensitive="False" ItemInsertLocation="Append" MaxLength="32" />
</asp:Panel>
<ajaxToolkit:ModalPopupExtender ID="mpeParcel" BackgroundCssClass="modalBgd" CancelControlID="lbtnCancelParcel" TargetControlID="hdnItem" PopupControlID="divItem" runat="server" />
The problem is that the ComboBox dropdown list cuts off where the popup model's bottom ends... the combobox portion in the popup modal renders properly, but the rest doesn't.
Oddly enough, a standard DropdownList (selection) renders properly.