Exemplo n.º 1
0
 /************************************************************
  * Function name : PageNavigator1_OnPageIndexChanged
  * Purpose       : C1WebGrid의 페이징 처리를 위한 이벤트 핸들러
  * Input         : void
  * Output        : void
  *************************************************************/
 #region PageNavigator1_OnPageIndexChanged
 protected void PageNavigator1_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
 {
     try
     {
         this.CurrentPageIndex                = e.PageIndex;
         this.PageInfo1.CurrentPageIndex      = e.PageIndex;
         this.PageNavigator1.CurrentPageIndex = e.PageIndex;
         this.BindGrid();
     }
     catch (Exception ex)
     {
         base.NotifyError(ex);
     }
 }
 /************************************************************
  * Function name : PageNavigator1_OnPageIndexChanged
  * Purpose       : C1WebGrid의 페이징 처리를 위한 이벤트 핸들러
  *
  * Input         : void
  * Output        : void
  *************************************************************/
 #region protected void PageNavigator2_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
 protected void PageNavigator2_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
 {
     try
     {
         this.CurrentPageIndex                = e.PageIndex;
         this.PageInfo2.CurrentPageIndex      = e.PageIndex;
         this.PageNavigator2.CurrentPageIndex = e.PageIndex;
         this.LnkBtnSubject_Click(null, null);
     }
     catch (Exception ex)
     {
         base.NotifyError(ex);
     }
 }
Exemplo n.º 3
0
        protected void PageNavigator1_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
        {
            try
            {
                Session["iPageindex"] = Convert.ToString(e.PageIndex);

                this.CurrentPageIndex                = e.PageIndex;
                this.PageInfo1.CurrentPageIndex      = e.PageIndex;
                this.PageNavigator1.CurrentPageIndex = e.PageIndex;
                this.BindGrdList(e.PageIndex, "");
            }
            catch (Exception ex)
            {
                base.NotifyError(ex);
            }
        }
        protected void PageNavigator1_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
        {
            try
            {
                this.CurrentPageIndex                = e.PageIndex;
                this.PageInfo1.CurrentPageIndex      = e.PageIndex;
                this.PageNavigator1.CurrentPageIndex = e.PageIndex;

                this.BindGrid();
                //this.BindGrdList("");
                //ScriptHelper.ScriptStartup(this, "select_user_list", "<script>ChangeLayer('1');</script>");
            }
            catch (Exception ex)
            {
                base.NotifyError(ex);
            }
        }
Exemplo n.º 5
0
 /************************************************************
  * Function name : PageNavigator1_OnPageIndexChanged
  * Purpose       : C1WebGrid의 페이징 처리를 위한 이벤트 핸들러
  *
  * Input         : void
  * Output        : void
  *************************************************************/
 #region protected void PageNavigator1_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
 protected void PageNavigator1_OnPageIndexChanged(object sender, CLT.WEB.UI.COMMON.CONTROL.PagingEventArgs e)
 {
     try
     {
         this.CurrentPageIndex                = e.PageIndex;
         this.PageInfo1.CurrentPageIndex      = e.PageIndex;
         this.PageNavigator1.CurrentPageIndex = e.PageIndex;
         this.BindGrid();
     }
     catch (Exception ex)
     {
         bool rethrow = ExceptionPolicy.HandleException(ex, "Propagate Policy");
         if (rethrow)
         {
             throw;
         }
     }
 }