我在更新面板中有一个网格视图。gridview 中的字段之一是 ASP.net linkbutton
,如下所示:
<ItemTemplate>
<asp:LinkButton ID="hlSortOrder" runat="server" CssClass="hlDialog" OnClick="LoadLog"
Text='<%# DataBinder.Eval(Container, "DataItem.SortOrder") %>'></asp:LinkButton>
</ItemTemplate>
当有人单击链接按钮时OnClick
,我将创建的方法称为LoadLog
. LoadLog 看起来像这样:
protected void LoadLog(object sender, EventArgs e)
{
GridViewRow gr = (GridViewRow)((DataControlFieldCell)((LinkButton)sender).Parent).Parent;
Label l = (Label)gr.FindControl("lblID");
DataSet ds;
ds = BL.GetRunoffAnswerLog(Convert.ToInt64(l.Text));
if (ds != null)
{
if (ds.Tables[0].Rows.Count == 0)
{
gvLog.Visible = false;
gvLog.DataSource = null;
lblRowsCount.Text = "No log for this record!";
}
else
{
lblRowsCount.Text = ds.Tables[0].Rows.Count.ToString() + " row(s) found for this record.";
gvLog.DataSource = ds.Tables[0];
gvLog.DataBind();
gvLog.Visible = true;
}
}
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "openDialog", "$('#dialog').dialog({draggable: true, modal: true, height: 500, width: 750, title: 'Log', open: function (type, data) {$(this).parent().appendTo('form');}});", true);
}
基本上,它获取网格视图行的句柄,从数据库中拉回一些数据并将其分配给 gvLog 源。之后注意最后一行:
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "openDialog", "$('#dialog').dialog({draggable: true, modal: true, height: 500, width: 750, title: 'Log', open: function (type, data) {$(this).parent().appendTo('form');}});", true);
我必须这样做才能打开我的对话框。当我第一次点击我的gridview中的一行时,我得到这个:
请注意,它只真正显示了标题……很奇怪。但是,一旦我再次单击同一行,它就会显示整个对话框:
它只发生在第一次点击时,如果我继续点击不同的行它工作正常。我应该补充一点,我必须添加以下 jquery 代码:
<script type="text/javascript">
$(document).ready(function () {
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_endRequest(function () {
$("#dialog").hide();
// re-bind your jQuery events here
});
....more code...
基于这个讨论:jQuery $(document).ready and UpdatePanels?
如果我在回发的那一刻没有该代码,则此对话框所在的整个 div 总是显示在我的页面上,我不希望那样...
正如下面一位成员所提到的。我相信发生的事情是您第一次单击链接按钮时,客户端事件首先发生,即打开实际打开的对话框,即使我在服务器端代码中引发此事件......如上所示,仅当您单击“LoadLog”事件点击我注册这个jquery opendialog。但似乎这仍然会在第一次打开对话框,并且一旦您第二次单击它,才会显示数据。