当用户想要添加到表格时,我在FooterTemplate的Gridview中有一个jquery选择的下拉框。 如果表中没有项目,则下拉列表会正确显示用户可以选择的列表。但是,如果用户删除表中的所有项目,则EmptyDataTemplate中的下拉列表不会显示任何项目。
我相信我必须更新所选择的下拉列表但是没有用。
这是我的标记:
<asp:GridView ID="DelegateInfoGridView" runat="server"
AutoGenerateColumns="false" Caption="Delegate Information"
CaptionAlign="Top" CssClass="grid" RowStyle-Wrap="true"
HorizontalAlign="Left" ShowFooter="true"
AllowPaging="true" PageSize="5" ShowHeaderWhenEmpty="false" onrowediting="DelegateInfoGridView_RowEditing"
onrowcancelingedit="DelegateInfoGridView_RowCancelingEdit" onrowdeleting="DelegateInfoGridView_RowDeleting"
onrowupdating="DelegateInfoGridView_RowUpdating"
ondatabound="DelegateInfoGridView_DataBound"
onrowcommand="DelegateInfoGridView_RowCommand">
<Columns>
<asp:TemplateField HeaderText="Recipient ID">
<ItemTemplate>
<asp:Label ID="deligvLblRecipientID" runat="server" Text='<%# Bind("RecipientID") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Delegate" ItemStyle-Wrap="false">
<ItemTemplate>
<asp:Label ID="deligvLblRecipientName" runat="server" Text='<%# Bind("RecipientName") %>'></asp:Label>
</ItemTemplate>
<FooterTemplate>
<asp:DropDownList ID="deligvDDLRecipientName" runat="server"
data-placeholder="Choose delegate…" class="chosen-single">
</asp:DropDownList>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Active">
<ItemTemplate>
<asp:Label ID="deligvLblActive" runat="server" Text='<%# (Boolean.Parse(Eval("Active").ToString())) ? "Yes" : "No" %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="deligvDDLActive" runat="server" Text='<%# (Boolean.Parse(Eval("Active").ToString())) ? "Yes" : "No" %>'>
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:DropDownList>
</EditItemTemplate>
<FooterTemplate>
<asp:DropDownList ID="deligvDDLActiveInsert" runat="server">
<asp:ListItem Selected="True">Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:DropDownList>
</FooterTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Action" ItemStyle-Wrap="false" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Button ID="deligvEditButton" runat="server" CausesValidation="False" CommandName="Edit"
Text="Edit" CssClass="gridActionbutton">
</asp:Button>
<asp:Button ID="deligvDeleteButton" runat="server" CausesValidation="False" CommandName="Delete"
Text="Delete" CssClass="gridActionbutton" OnClientClick="return confirm('Are you sure you want to delete this Delegate Information?')" >
</asp:Button>
</ItemTemplate>
<EditItemTemplate>
<asp:Button ID="deligvUpdateButton" runat="server" CausesValidation="False" CommandName="Update"
Text="Update" CssClass="gridActionbutton"></asp:Button>
<asp:Button ID="deligvCancelButton" runat="server" CausesValidation="False" CommandName="Cancel"
Text="Cancel" CssClass="gridActionbutton"></asp:Button>
</EditItemTemplate>
<FooterTemplate>
<asp:Button ID="deligvAddButton" runat="server" CommandName="Add" Text="Add Delegate" Width="90%" CausesValidation="false"
CssClass="gridActionbutton">
</asp:Button>
</FooterTemplate>
</asp:TemplateField>
</Columns>
<EmptyDataTemplate>
<tr>
<th>Recipient ID</th>
<th>Delegate</th>
<th>Active</th>
<th>Action</th>
</tr>
<tr>
<td colspan="4" style="text-align:center;">
No Delegates were found for you. Delegates can be added by clicking the 'Add Delegate' Button.
</td>
</tr>
<tr>
<td></td>
<td>
<asp:DropDownList ID="deligvDDLRecipientName" runat="server"
data-placeholder="Choose delegate…" class="chosen-single">
</asp:DropDownList>
</td>
<td>
<asp:DropDownList ID="deligvDDLActiveInsert" runat="server">
<asp:ListItem Selected="True">Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:DropDownList>
</td>
<td>
<asp:Button ID="deligvAddButton" runat="server" CommandName="Add" Text="Add Delegate" Width="90%" CausesValidation="false"
CssClass="gridActionbutton">
</asp:Button>
</td>
</tr>
</EmptyDataTemplate>
</asp:GridView>
这是填充页脚下拉列表的代码隐藏:
protected void DelegateInfoGridView_DataBound(object sender, EventArgs e)
{
try
{
m_strUserID = CommonMethods.ParseUserID(User.Identity.Name);
//Get the Footer controls that have the new entry data
Control tFooterControls = getFooterControls(DelegateInfoGridView);
DropDownList ddlRecipientNames = tFooterControls.FindControl("deligvDDLRecipientName") as DropDownList;
m_strXmlTableData = m_pagingClient.GetAllPossibleDelegates(m_strUserID);
DataTable tdtAllDelegates = CommonMethods.ParseXML(m_strXmlTableData);
ddlRecipientNames.DataSource = tdtAllDelegates;
ddlRecipientNames.DataTextField = "RecipientName";
ddlRecipientNames.DataValueField = "RecipientID";
ddlRecipientNames.DataBind();
ddlRecipientNames.Items.Insert(0, new ListItem("", "0"));//This is needed for the jquery-chosen dropdown to add data-holder text
}
catch (Exception ex)
{
//TO DO: Response.Redirect("~/Error.aspx");
}
}
这是我的javascript:
<script type="text/javascript">
$(document).ready(function () {
//Configure the DropDownBox using the 'chosen' jquery plugin
$(".chosen-single").chosen({
search_contains: true,
no_results_text: "Sorry, no match!"
});
});
$('#deligvAddButtonEmpty').click(function () {
$(".chosen-single").chosen().val('').trigger("chosen:updated");
});
</script>
因此,当单击按钮deligvAddButtonEmpty时,项目不会添加到下拉列表中。我逐步通过代码和方法,DelegateInfoGridView_DataBound,在返回数据时调用。但是下拉列表是空的。
我相信我的javascript不正确,但我不知道如何修复它。 任何建议将不胜感激。
感谢。
更新
我更改了按钮上的javascript点击:
$('#deligvAddButtonEmpty').click(function () {
$("#deligvDDLRecipientName").trigger("chosen:updated");
});
但是当网格为空时,下拉列表仍为空。
更新
我正在尝试使用Firebug调试javascript,似乎没有调用.click函数。至少,当我在函数中放置一个断点时,它不会像在document.ready函数中那样停止。 我正在使用MasterPages,我有属性ClientIDMode ='Static',但我可能没有正确定义'selector'。
更新
单击“添加按钮”时,如果单击“删除按钮”并且网格中没有其他项目,则不会刷新所选下拉列表。 但是,我似乎无法触发按钮的click事件。这是我的jquery点击功能:
$(document).on("click", "input[id$=deligvDeleteButton]", function () {
alert("Delegate delete button clicked");
});
更新 至少,现在点击功能正在被触发...... 我将ClientIDMode-'Static'添加到我正在访问的控件中,并将“click”函数放在document.ready()函数中。但是,更新不会将列表添加到下拉列表中。这是功能:
$("input[id$=deligvDeleteButton]").click(function () {
$("input[id$=deligvDDLRecipientName]").val('').trigger("chosen:updated");
});
更新
我不知道这是否是问题,但在GridView或EmptyDataTemplate中,它可能与jquery脚本中的控件ID有关。我保持GridView或EmptyDataTemplate中下拉列表的ID相同。在代码隐藏中,我通过确定FooterControl是否为空来识别使用哪个控件。然后其余的C#代码是相同的,因为ID是相同的。但是,在javascript中,如果id是相同的,这可能是一个问题。
如何识别EmptyDataTemplate中的控件而不是Gridview?
更新
我不知道这是否是问题,但在GridView或EmptyDataTemplate中,它可能与jquery脚本中的控件ID有关。我保持GridView或EmptyDataTemplate中下拉列表的ID相同。在代码隐藏中,我通过确定FooterControl是否为空来识别使用哪个控件。然后其余的C#代码是相同的,因为ID是相同的。但是,在javascript中,如果id是相同的,这可能是一个问题。
如何识别EmptyDataTemplate中的控件而不是Gridview?
我使用以下javascript来获取2个下拉控件的ID并更新它们,并且仍未填充下拉列表:
$("input[id$=deligvDeleteButton]").click(function () {
$("[id*='deligvDDLRecipientName']").each(function () {
alert($(this).attr('id'));
$(this).val("").trigger("chosen:updated");
});
});
警报显示ID。一个是'deligvDDLRecipientName',另一个是deligvDDLRecipientName_chosen。我使用.trigger函数更新它们,但列表仍未填充。
答案 0 :(得分:0)
我想出来了...... 如果有人有这个问题......
它与所选插件无关。 这是我确定FooterControl是否被实例化的方式。我查了一下。但是当用户删除所有行时,FooterControl不为null,但您仍需要使用EmptyTemplateData控件。 所以我没有检查null,而是检查了Row Count&gt; 0。 这很有用。