or
An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|
|
<telerik:GridBoundColumn DataField=
"EtatIncident.nomEtatIncident"
HeaderText=
"Etat du ticket"
SortExpression=
"Etatduticket"
UniqueName=
"EtatDuTicket"
>
</telerik:GridBoundColumn>
protected
void
RadGrid2_ItemDataBound(
object
sender, GridItemEventArgs e)
{
foreach
(Telerik.Web.UI.GridDataItem dataItem
in
RadGrid2.MasterTableView.Items)
{
Label lbl = (Label)dataItem.FindControl(
"EtatDuTicket"
);
if
(lbl.Text ==
" En cours"
) { lbl.ForeColor = Color.Green; }
}
}