0

在 AXGridView 中,我想将处于编辑模式的选定行的行状态更改为选定模式。

这需要在单击外部按钮时发生。

我尝试了以下方法:

  1. 将选中 Row 的 RowState 更新为 DataControlRowState.Selected

  2. 将 GridView 的 EditIndex 更新为 -1

他们都没有工作:(。

令人惊讶的是,即使是 RowEditing 事件处理程序中的 e.cancel = true 语句也没有改变行状态。:(

我是 AX 的新手,可能是它的基础。请告诉我解决方案/解决方法。

4

1 回答 1

0

Since my only experience is from AX 2009, this might be invalid for AX 2012. If it works in the same way as with EP for AX 2009, then you should be able to get the row and run EndEdit(). Have a look at this article: http://msdn.microsoft.com/en-us/library/cc624200(v=ax.50).aspx

于 2012-04-20T19:10:29.223 回答