コード例 #1
0
    protected void BindTree()
    {
        ProjectTree projectTree = new ProjectTree();

        projectTree.BindTreeNodes(this.tvBudget, this.Session["PmSet"], base.UserCode, base.Request["prjId"], this.ddlYear.SelectedItem.Text, this.ddlYear.SelectedValue);
        TreeNode arg_64_0 = this.tvBudget.Nodes[0];
    }
コード例 #2
0
ファイル: IndirectVerify.aspx.cs プロジェクト: zxl881203/src
 protected void BindTree()
 {
     if (this.ddlYear.SelectedValue == "zzjg")
     {
         this.BindZZJGTree();
     }
     else
     {
         ProjectTree projectTree = new ProjectTree();
         projectTree.BindTreeNodes(this.tvBudget, this.Session["PmSet"], base.UserCode, base.Request["id"], this.ddlYear.SelectedItem.Text, this.ddlYear.SelectedValue);
     }
     this.tvBudget.ExpandAll();
 }
コード例 #3
0
ファイル: RequestPayment.aspx.cs プロジェクト: zxl881203/src
    protected void BindTree()
    {
        if (this.ddlYear.SelectedValue == "zzjg")
        {
            this.BindZZJGTree();
            return;
        }
        ProjectTree projectTree = new ProjectTree();

        projectTree.BindTreeNodes(this.tvBudget, this.Session["PmSet"], base.UserCode, base.Request["prjGuid"], this.ddlYear.SelectedItem.Text, this.ddlYear.SelectedValue);
        TreeNode treeNode = this.tvBudget.Nodes[0];

        this.DisabledBtnAdd(treeNode.ChildNodes.Count);
    }
コード例 #4
0
ファイル: Actual.aspx.cs プロジェクト: zxl881203/src
    protected void BindTree()
    {
        ProjectTree projectTree = new ProjectTree();

        projectTree.BindTreeNodes(this.trvwBudget, this.Session["PmSet"], base.UserCode, base.Request["prjId"], this.dropYear.SelectedItem.Text, this.dropYear.SelectedValue);
    }