AJAX查询UI's选项卡中没有显示组合框按钮
本文关键字:显示 组合 按钮 选项 UI 查询 AJAX | 更新日期: 2023-09-27 18:17:47
当我在jquery UI的选项卡外填充组合框时,它工作得很好。但是当在选项卡内进行相同操作时,CB的下拉按钮不显示,下拉列表也不可见。我是使用Javascript的新手。在这方面有人能帮我吗?
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript">
$(function () {
$("#tabs").tabs();
});
</script>
............
<div id="tabs-3">
<asp:ComboBox ID="ComboBox2" runat="server" AppendDataBoundItems="True"
DataSourceID="SqlDataSource1" DropDownStyle="DropDownList"
AutoCompleteMode="SuggestAppend" DataTextField="display_name"
DataValueField="display_name" style="display: inline;"
AutoPostBack="True" MaxLength="0" Visible="true">
</asp:ComboBox>
</div>
要在jQuery选项卡中执行此操作,请查找包含jQuery选项卡样式的CSS文件。查找
.ui-tabs .ui-tabs-hide
并更改
display: none
position: absolute; left: -10000px;
这对我来说是有效的,通过阻止asp/ajax/任何控件上的内联样式被放在'display: none'