欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[DEV]ASPxGridView控件点击行更新数据

程序员文章站 2022-07-13 21:26:28
...

@[DEV]ASPxGridView控件点击行更新数据

[DEV]ASPxGridView控件点击行更新数据

需求:点击行,触发后端行点击事件,获取行ID,根据ID查询表B的数据,绑定到表B中

aspx中设置

EnableCallbacks=“False”
KeyFieldName=“ID”
OnFocusedRowChanged=“GridView_FocusedRowChanged”
SettingsBehavior中 AllowFocusedRow=“True” ProcessFocusedRowChangedOnServer="True"

SettingsBehavior中这两个属性是一定要设置的,这样才会触发后端事件。我就是一开始没找到ProcessFocusedRowChangedOnServer这个属性怎么都实现不了功能。
##后端cs中事件

int selectIndex = ((DevExpress.Web.ASPxGridView)(sender)).FocusedRowIndex;
        if (selectIndex == -1)
            return;

        string selectedID = GridView.GetRowValues(selectIndex, "ID").ToString();

        DataTable dtParts = menuInfo.getPartsaInfo(selectedID);
        PartsInfoGridView.DataSource = dtParts;
        PartsInfoGridView.DataBind();

这样PartsInfoGridView表就会更新了。

一开始搜索关键字的时候没找到相关的,纠结了我很久,后来加群集思广益,给我这个链接参考,才实现功能。参考自ASPxGridView 中selectionchanged事件的先决条件

相关标签: DEV