Re: how to show the unread dialy report with highlihgt color
please check my file ... I'm using Jquery gridview na I'm using like
if (full.CreatedBy != '@Session["UserId"]') {
if (full.ReptMgr1 == '@Session["UserId"]') {
if (full.RptDisp1 == true) {
$('#Dly' + full.DReportId).addClass('ColorChange');
}
}
else if (full.ReptMgr2 == '@Session["UserId"]') {
if (full.RptDisp2 == true) {
$('#Dly' + full.DReportId).addClass('ColorChange');
}
}
else if (full.ReptMgr3 == '@Session["UserId"]') {
if (full.RptDisp3 == true) {
$('#Dly' + full.DReportId).addClass('ColorChange');
}
}
}
But the problem is Css are not triggering properly
$('#Dly' + full.DReportId).addClass('ColorChange'); ...this condition is not working poperly