Как получить доступ к столбцу gridview на rowdatabound? - PullRequest
5 голосов
/ 19 февраля 2012

Я хотел бы изменить значение моего столбца gridview на активное, когда значение равно 1. У меня есть столбец gridview, как

<asp:BoundField   DataField="STATUS" HeaderText="STATUS" SortExpression="STATUS" HeaderStyle-HorizontalAlign="Left">
                <HeaderStyle HorizontalAlign="Left"></HeaderStyle>
            </asp:BoundField>

и код CS

 protected void gvCategory_RowDataBound(object sender, GridViewRowEventArgs e)
    {

        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            if (e.Row.Cells[5].Text=="0")
            {
                e.Row.Cells[5].Text = "INACTIVE";
            }
        }
    }

Это работает, но не получится, если я изменю порядок столбцов. Что мне нужно, это что-то вроде функции findControl. Спасибо.

Ответы [ 3 ]

15 голосов
/ 19 февраля 2012

Вот несколько утилит, которые я написал несколько лет назад и которые могут вам помочь:

// ---- GetCellByName ----------------------------------
//
// pass in a GridViewRow and a database column name 
// returns a DataControlFieldCell or null

static public DataControlFieldCell GetCellByName(GridViewRow Row, String CellName)
{
    foreach (DataControlFieldCell Cell in Row.Cells)
    {
        if (Cell.ContainingField.ToString() == CellName)
            return Cell;
    }
    return null;
}

// ---- GetColumnIndexByHeaderText ----------------------------------
//
// pass in a GridView and a Column's Header Text
// returns index of the column if found 
// returns -1 if not found 

static public int GetColumnIndexByHeaderText(GridView aGridView, String ColumnText)
{
    TableCell Cell;
    for (int Index = 0; Index < aGridView.HeaderRow.Cells.Count; Index++)
    {
        Cell = aGridView.HeaderRow.Cells[Index];
        if (Cell.Text.ToString() == ColumnText)
            return Index;
    }
    return -1;
}

// ---- GetColumnIndexByDBName ----------------------------------
//
// pass in a GridView and a database field name
// returns index of the bound column if found 
// returns -1 if not found 

static public int GetColumnIndexByDBName(GridView aGridView, String ColumnText)
{
    System.Web.UI.WebControls.BoundField DataColumn;

    for (int Index = 0; Index < aGridView.Columns.Count; Index++)
    {
        DataColumn = aGridView.Columns[Index] as System.Web.UI.WebControls.BoundField;

        if (DataColumn != null)
        {
            if (DataColumn.DataField == ColumnText)
                return Index;
        }
    }
    return -1;
}
3 голосов
/ 19 февраля 2012

Вы можете зациклить все столбцы, чтобы получить правильный индекс, или использовать этот LINQ:

String colToFind = "status";
int colIndex = ((GridView)sender).Columns.Cast<DataControlField>()
                .Where((c, index) => c.HeaderText.ToLower().Equals(colToFind))
                .Select((c,index)=>index).First();
0 голосов
/ 15 ноября 2017

Очиститель легче читать LINQ.Тим не работал на меня.

private int GetFirstGridViewColIndex(string dataField, object sender)
{
    var boundFieldColumns = ((GridView)sender).Columns.Cast<BoundField>();

    return boundFieldColumns.Where((column, index) => string.Equals(column.DataField, dataField, StringComparison.InvariantCultureIgnoreCase))
        .Select((column, index) => index)
        .First();
}
...