AspxGridview包含所有复选框列

时间:2009-12-30 01:59:28

标签: aspxgridview

我有一个带

的devexpress网格

dxwgv:GridViewDataCheckColumn Caption =“ONE”FieldName =“ONE”>                              

我的所有列都带有复选框+在rowselect上有复选框 例如 checbox |列(复选框)|列(复选框)|列(复选框)|柱(复选框)

问题是在选中/取消选中任何列复选框时获取行值。 我尝试使用Eval并添加到复选框的ClientInstanceName,但是发送clientInstanceName来自javascrit作为params是问题(我使用“chkbox_id.ClientInstanceName”但没有用)

任何帮助将不胜感激。感谢

1 个答案:

答案 0 :(得分:0)

在网格上设置客户端实例名称:

ClientInstanceName="YourGrid"

然后在页面上的某个位置添加一个控件,以允许用户“全选”,如下所示:

<input id="chkSelectAll" type="checkbox" onclick="YourGrid.SelectAllRowsOnPage(this.checked);" />

最后在后面的代码中你可以做这样的事情:

// aColumnName is the name of the column from which you want the value.
private List<object> GetSelectedRowValues(string aColumnName) 
    {
        List<object> values = new List<object>();
        string[] valueToGet = { aColumnName };

        for (int i = 0; i < YourGrid.VisibleRowCount; i++)
        {
            if (YourGrid.Selection.IsRowSelected(i))
            {
                //get the passed in value for the selected rows.
                values.Add(YourGrid.GetRowValues(i, valueToGet));
            }
        }

        return values;
    }