我想在用户尝试删除详细视图中的记录时提示用户进行确认吗?我有将showDeletebutton设置为true的命令。
我找到了如何确认gridview的方法,但是如何修改以匹配详细视图?
代码:
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
// loop all data rows
foreach (DataControlFieldCell cell in e.Row.Cells)
{
// check all cells in one row
foreach (Control control in cell.Controls)
{
// Must use LinkButton here instead of ImageButton
// if you are having Links (not images) as the command button.
ImageButton button = control as ImageButton;
if (button != null && button.CommandName == "Delete")
// Add delete confirmation
button.OnClientClick = "if (!confirm('Are you sure " +
"you want to delete this record?')) return;";
}
}
}
}
有人吗
我找到了问题的答案。
我的答案:
protected void DViewComputer_DataBound1(object sender, EventArgs e)
{
int noRow = DViewComputer.Rows.Count - 1;//get the no of record
if (noRow >0)
{
Button button = (Button)(DViewComputer.Rows[noRow].Cells[0].Controls[2]);
// Add delete confirmation
((System.Web.UI.WebControls.Button)(button)).OnClientClick = "if (!confirm('Are you sure " +
"you want to delete this record?')) return;";
}
}
无论如何,感谢您的帮助。
问题内容: 我希望我的JFileChooser从详细信息视图开始,而不是从其开始的“列表”视图开始。您如何做到这一点? 问题答案: 您可以从ActionMap获取Action:
问题内容: 我想获得有关单击删除的 确认消息 (可能是按钮或图像)。如果用户选择“ ”,则删除完成;否则,如果单击“ ”,则什么也不会发生。 当单击按钮时,我尝试回显此内容,但是回显内容会使我的输入框和文本框失去样式和设计。 问题答案: 在按钮事件中编写以下代码:
此字段已被删除。若要使用或保存此已保存视图,必须删除该字段。 错误的图像。 编辑: 在遵循跟踪建议后,我能够在错误日志中生成此内容。
在 https://editor.swagger.io/ 这给了我一个错误
我正在使用Spring Boot hibernate制作一个书店rest api,我不知道该如何进行。因此,首先创建用户(使用此处未发布的DTO): 然后他可以登录并搜索他感兴趣的书籍。当他想订购时(使用POST和JSON包含他的书),他应该在我的客户实体中输入他的详细信息(使用DTO): 这是一个好方法吗?我不知道如何才能将用户和客户联系起来- 编辑:澄清: > 用户注册并且只有电子邮件和密码-
我正在尝试从我的windows10 PC上的命令行添加提交消息。我已经完成了以下工作: 从命令行键入 。 在vim界面中,我键入了提交主题和描述。 点击 键,然后键入 ,但 vim 接口不会退出。当我关闭它并试图推送到github时,它没有推送。我再次尝试了上述方法,但vim界面没有退出。我犯了什么错误,或者我需要做些什么来使vim接口退出,导致提交完成,以便我可以推送到github?