protected void RadGrid2_NeedDataSource(object source, GridNeedDataSourceEventArgs e)
 {
     if (!string.IsNullOrEmpty(this.ReportType))
     {
         SchedulableRpt rpt = SchedulableRpt.GetSchedulableRptByRptName(this.ReportType);
         System.Collections.Generic.List <ReportTriggerDetail> dt = this.ShowAllUser ? rpt.GetTriggers() : rpt.GetTriggers(this.UserID);
         this.RadGrid2.DataSource              = dt;
         this.ddlCheckTriggerID.DataSource     = dt;
         this.ddlCheckTriggerID.DataValueField = "Name";
         this.ddlCheckTriggerID.DataTextField  = "Name";
         this.ddlCheckTriggerID.DataBind();
     }
 }