zoukankan      html  css  js  c++  java
  • 记录DEV gridview获取行列数据方法

    DataRow dr = this.gridView1.GetDataRow(this.gridView1.FocusedRowHandle);//获取选中行
                string str = gridView1.GetFocusedRowCellValue("PEBID").ToString();//获取某一行的指定列的值
    

      获取每行指定列的数据(可处理批量选择)

    List<int> selectRows;
                List<int> custcode = new List<int>();
                selectRows = this.gridView1.GetSelectedRows().ToList();
                foreach (int i in selectRows)
                {
                    custcode.Add(int.Parse(this.gridView1.GetDataRow(i)["PEBID"].ToString()));
                }
  • 相关阅读:
    day89
    day88
    day87
    day86
    day85
    day84
    day83
    Maven仓库汇总
    [转载]AngularJS入门教程04:双向绑定
    [转载]AngularJS入门教程03:迭代器
  • 原文地址:https://www.cnblogs.com/liuhuimh/p/7324741.html
Copyright © 2011-2022 走看看