priya Avanigadda

priya Avanigadda

  • NA
  • 297
  • 149.5k

Re: how to show the unread dialy report with highlihgt color

Jan 8 2015 4:32 AM
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