Infragistics UltraGrid:用户从下拉列表中选择后如何强制执行 CellUpdate 事件

发布于 2024-09-25 18:24:19 字数 102 浏览 5 评论 0原文

Infragistics UltraGrid:列具有自动完成功能的下拉菜单。当用户从列表中选择一个项目时,如何强制执行 CellUpdate,而不必等待他按 Enter 键或单击其他单元格。

Infragistics UltraGrid: Column has a drop down with auto-complete. How can I force a CellUpdate when the user selects an item from the list and not have to wait for him to hit enter or click a different cell.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

千年*琉璃梦 2024-10-02 18:24:19

答案是:

grid.AfterCellListCloseUp += delegate { grid.UpdateData(); };

非常感谢 Infragistics 网格大师 Mike Saltzman:

http://community .infragistics.com/forums/p/47347/253023.aspx#253023

And, the answer is:

grid.AfterCellListCloseUp += delegate { grid.UpdateData(); };

Much thanks to Mike Saltzman, the Infragistics Grid Guru:

http://community.infragistics.com/forums/p/47347/253023.aspx#253023

眼藏柔 2024-10-02 18:24:19

类似的帖子已提交至 Infragistics 论坛并得到答复。

http://community.infragistics.com/forums/p/47347/253023 .aspx#253023

谢谢。

similar post was submitted to Infragistics forums and was answered.

http://community.infragistics.com/forums/p/47347/253023.aspx#253023

Thanks.

妳是的陽光 2024-10-02 18:24:19

我这样做的方法(在 VB.NET 中)是声明下拉列表:

Private WithEvents dd As New UltraDropDown

然后设置 DataSourceValueMemberDisplayMember 等。

然后将列的 ValueList 属性设置为下拉列表:

Me.ultragrid.DisplayLayout.Bands(0).Columns("Name").ValueList = dd

然后在下拉列表的 RowSelected 事件上,调用 Update() 方法UltraGrid 的代码>ActiveRow:

Me.ultragrid.ActiveRow.Update()

The way I do this (in VB.NET) is to declare the dropdown:

Private WithEvents dd As New UltraDropDown

Then set the DataSource, ValueMember, DisplayMember, etc.

Then set the ValueList property of your column to the dropdown:

Me.ultragrid.DisplayLayout.Bands(0).Columns("Name").ValueList = dd

Then on the RowSelected event of the dropdown, call the Update() method for the ActiveRow of the UltraGrid:

Me.ultragrid.ActiveRow.Update()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文