void nlrTeacherVariable_DisableESEAforSummary(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkTQTeacherVariableESEA")
     {
         link.Enabled = false;
     }
 }
 void LinkRow_LinkControlAdded(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkSTYP_ALLTypes")
     {
         link.Enabled = false;
     }
 }
Пример #3
0
 void LinkRow_LinkControlAdded_DisableCompareToForSTYPALL(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID != "linkCompareToCurrent")
     {
         link.Enabled = false;
     }
 }
Пример #4
0
 void nlrShow_LinkControlAdded_DisableESEAQualified(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkTQShowESEAQualified")
     {
         link.Enabled = false;
     }
 }
 void DisableSchoolSize_LinkControlAdded(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (GlobalValues.OrgLevel.Key != OrgLevelKeys.School &&
         link.ID == "linkTQRelateToSchoolSize")
     {
         link.Enabled = false;
     }
 }
 void nlrShow_LinkControlAdded_DisableForESEA(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkTQSubjectsSPSpecEdSumm" ||
         link.ID == "linkTQSubjectsSPAll")
     {
         link.Enabled = false;
     }
 }
Пример #7
0
 void nlrSubject_DisableSummaryForESEA(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkTQSubjectsAll" ||
         link.ID == "linkTQSubjectsSpecEdSumm")
     {
         link.Enabled = false;
     }
 }
Пример #8
0
 void LinkRow_GrayOutSummaryStyp(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkSTYP_StateSummary")
     {
         if (GlobalValues.Group.Key == GroupKeys.All)
         {
             link.Enabled = false;
         }
     }
 }
Пример #9
0
 void LinkRow_EnableStateLevelGroupLinks(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
 {
     if (link.ID == "linkGroupAll" ||
         link.ID == "linkGroupGender" ||
         link.ID == "linkGroupRace" ||
         link.ID == "linkGroupRaceGender")
     {
         link.Enabled = true;
     }
 }
        void disableNewRaces_LinkControlAdded(SligoCS.Web.Base.WebServerControls.WI.HyperLinkPlus link)
        {
            // this routine may safely be deleted once GlobalValues.Year is incremented to 2011
            if (GlobalValues.Year > 2010)
            {
                return;
            }

            if (link.ID == "linkTQRelateToPacific" ||
                link.ID == "linkTQRelateToTwoPlusRaces")
            {
                link.Enabled = false;
            }
        }