Ejemplo n.º 1
0
        protected void GridView5_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                TableCell InterviewStatusCell = e.Row.Cells[4];

                FormatStatusCell.FormatInterviewStatusCell(InterviewStatusCell);
            }
        }
Ejemplo n.º 2
0
        protected void GridView3_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                TableCell SubmissionStatusCell = e.Row.Cells[7];

                FormatStatusCell.FormatSubmissionStatusCell(SubmissionStatusCell);
            }
        }