问题标签 [rowcommand]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
2312 浏览

gridview - 在更新面板中通过 RowCommand 删除行后,gridview 不更新

进行更改后,我无法刷新更新面板中的 Gridview。有人可以帮忙吗?我在 GridView 中使用 rowCommand 删除行。我正在使用 ToolkitScriptManager 控件和 UpdatePanel。

我的代码:

0 投票
0 回答
80 浏览

asp.net - 某些行没有触发 Gridview 事件

我在 Gridview 中显示一个摘要页面。一切正常,除了当我点击它时 gridview rowcommand 事件的最后 3 行没有触发。

下面是我用于命令参数的 aspx 代码。

下面是在 HTML 中生成的代码

以下是屏幕截图。标记为红色的区域在单击时未触发。![Griddiew 1中的错误

非常感谢任何帮助。

0 投票
1 回答
477 浏览

vb.net - 按钮行命令不会触发

gridview 中的行命令按钮不会触发,

从 TB_DOCUMENT 检索的 gridview 中的数据,我打算获取第一列 (DOC_ID) 的值并将其作为新记录 (TB_DOC) 存储到另一个表中,有人可以帮我解决这个问题吗?谢谢

HTM 标记

0 投票
1 回答
859 浏览

asp.net - Gridview RowCommand 参数未在 Safari 中正确传递

我有一个带有gridview 的asp 页面。我还为每个绑定行添加了一个客户端脚本,以突出显示/取消突出显示鼠标悬停/移出。我添加了一个 asp:button 作为模板字段并将一个值绑定到 CommandArgument。在 IE 和 FIrefox 中,我得到了将 CommandName 传递给 _RowCommand 事件的预期行为。但是,在 Safari 中,我只看到传递给 RowCommand 的“Select”的 CommanName。

预期的行为是,当单击绑定行时,“选择”参数将传递给 RowCommand 事件。单击该行中的按钮时,将传递参数“Remove”。

项目模板的 HTML

任何想法将不胜感激。谢谢

0 投票
1 回答
83 浏览

c# - how to get data from a gridview

I display customers past orders in a gridview. They can press the Resend button in the last column to resend their order under the condition that the order is paid or past that status.

First the gridview:

now the databinding to select the resend button when customer paid the order:

which works fine. I am disabling the button. Maybe a better solution is to hide it instead. However this is not my concern.

now the row command to get the "ordId" value from the row where the button is pressed:

However to get the selected row and reading out the order identification from the row is challenging for me. I goggled this over and over and can’t see where I make the mistake.

The line:

fails with

Input string was not in a correct format

If found this even on the msdn page of Microsoft?!

If I display the e.commandArgument I see: <% ((GridViewRow) Container).RowIndex %>

Can anyone help so I can get the value OrdId from TD_OrdID from the row the customer has pressed the Resend button?

Thank you in advance.

0 投票
1 回答
2472 浏览

c# - 嵌套的 Gridview RowCommand 事件导致父 GridView RowCommand 触发

我有两个 gridview ,一个是 parent 另一个是 child ,每个 gridview 都有自己的 OnRowCommand 事件。当 gridview rowcommand 为子行触发时,父行的 rowcommand 事件被触发。这会导致 gvProject 行命令错误中出现以下错误(当我们有几个项目和很多文件夹时)

错误:索引超出范围。必须是非负数且小于集合的大小。参数名称:索引

我该如何解决这个问题?这是我的网格视图:

这是我的 rowcommand 事件:

0 投票
1 回答
1831 浏览

c# - 如何在GridView的OnRowCommand中使用FindControl?

我正在尝试在 gridview 的 RowCommand 中使用 findcontrol TextBox。 但是错误对象引用未设置为对象的实例。

请帮帮我。

设计

后面的代码:

如何在GridView的OnRowCommand中使用FindControl?

提前致谢。;)

0 投票
0 回答
101 浏览

c# - Rowcommand 无法正常工作仅在 detailsView 中显示第一个链接按钮详细信息?

GridView背后的代码

Default2 是配置 DetailsView 的下一个页面

详细信息视图背后的代码

搜索详细信息将显示地衣列表(链接按钮) 通过单击这些按钮,必须在 detailsView 中显示每个地衣的详细信息

0 投票
0 回答
151 浏览

c# - gridview_Rowcommand 中的代码未更新控件状态(例如文本框文本)

我正在使用一个简单的gridview,如下所示:

为了更新 gridview 中的记录,我使用 gridview_SelectedIndexChanged 方法,而对于删除记录,我使用 gridview_RowCommand (if e.CommandName == "Delete") 方法,如下所示:

在更新记录的情况下,更新后我有一些代码来更新页面上正常工作的控件,但是在删除记录的情况下,记录正在被删除,但页面上的控件没有得到更新。附加调试器显示代码已完美执行,但尚未更新控件。

我已经在谷歌上搜索了一天,真的需要知道原因而不是寻找替代方案。

0 投票
0 回答
661 浏览

asp.net - 指数超出范围。必须是非负数且小于集合的大小。参数名称:索引gridview

根据数据库中的独特条件,我的网格只有一行(总是)。当我尝试编辑使用Rowcommand时出现错误

“索引超出范围”

这是网格代码和asp.net代码: