Devexpress ASPxGridView BatchUpdate - 从 c# 每个单元格更新中更新特定值

问题描述 投票:0回答:0

我正在使用 Devexpress ASPxGridView BatchUpdate 使用更新查询

UPDATE WorkOrderTable 
SET Qty = @Qty, 
JobStatusID = @JobStatusID 
WHERE (WorkOrderRowIndex = @WorkOrderRowIndex)

@Qty 将来自 aspxgridview,

我的问题是@JobStatusID 参数。

我的目标是从 C# 代码更新特定值 在每个单元格更新或每个 ASPxGridView BatchUpdate 上。

我需要触发哪个事件? 以及如何将我的值发送到@JobStatusID 更新参数?

知道怎么做吗? 谢谢

我试着检查一些事件,比如 _BatchUpdate

c# asp.net events devexpress aspxgridview
© www.soinside.com 2019 - 2024. All rights reserved.