void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     if (onClose != null)
     {
         onClose(this, e);
     }
 }
Esempio n. 2
0
 void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     //非 ucGridView 所引發的事件,需自行 Refresh 所需的 ucGridView
     Util.setJS_AlertDirtyData(fmMain);
     ucGridDetail1.Refresh();
     ucGridDetail2.Refresh();
 }
 /// <summary>
 /// 彈出視窗 Close
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     if (onClose != null)
     {
         onClose(this, e);
     }
     this.Refresh(true);
 }
Esempio n. 4
0
    void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
    {
        if (!string.IsNullOrEmpty(ucCommCascadeSelect1.ucSelectedUserIDList))
        {
            hidClearData.Value = "N";
        }

        if (onClose != null)
        {
            onClose(this, e);
        }
    }
Esempio n. 5
0
    void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
    {
        txtSelectedIDList.Text   = ucCommMultiSelect1.ucSelectedIDList;
        txtSelectedInfoList.Text = ucCommMultiSelect1.ucSelectedInfoList;
        ucDefSelectedIDList      = txtSelectedIDList.Text;

        breakInfoList();

        if (onClose != null)
        {
            onClose(this, e);
        }
    }
    void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
    {
        FlowExpress oFlow = new FlowExpress();

        if (oFlow.FlowCurrLogIsClose)
        {
            Response.Redirect(_FlowTodoUrl);
        }
        else
        {
            gvFlowPrevStepLog.Refresh();
        }
    }
Esempio n. 7
0
    void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
    {
        //處理上傳結果
        if (Session["FileName_" + _GUID] != null)
        {
            //更新按鈕屬性,並清除相關Session
            PageViewState["_UploadedFileName"] = (string)Session["FileName_" + _GUID];
            PageViewState["_UploadedFileBody"] = (byte[])Session["FileBody_" + _GUID];
            Session["FileName_" + _GUID]       = null;
            Session["FileBody_" + _GUID]       = null;
        }

        //事件訂閱
        if (onClose != null)
        {
            onClose(this, e);
        }
    }
Esempio n. 8
0
 void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     ucGridView1.Refresh();
 }
Esempio n. 9
0
 void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     Util.MsgBox(string.Format("按下[{0}]", e.Header));
 }
Esempio n. 10
0
 void ucModalPopup1_onClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     //throw new NotImplementedException();
     ucGridView1.Refresh();
 }
 protected void ucModalPopup_btnClose(object sender, Util_ucModalPopup.btnCloseEventArgs e)
 {
     LoadData();
     ucModalPopup.Reset();
     Session["FlowVerifyInfo"] = null;
 }