在自定义控件

时间:2015-09-25 19:09:20

标签: java xpages

我正在构建一个应用程序,其中我有mainDoc,它可以有一个或多个相关的注释文档。在mainDoc中有一个绑定到Payments.getAllItems(WFSMainDoc.getValue("LinkKey"));的重复控件.java类Payments具有操作PaymentItems和ArrayList的方法。 getAllItems方法获取所有相关的NotesDocuments并将它们加载到ArrayList中。如果ArrayList已经存在,它只返回先前构建的ArrayList。 Repeat中的按钮设置viewScope.vsRIndex = rIndex;viewScope.vsShowPayment = true;,它现在显示panelPaymentDetail和自定义控件,该控件具有java.lang.Object类型的自定义属性,并使用pItem = Payments.getItem(rIndex); return pItem;

以上所有作品我都有以下几个示例控件。我有两个问题: 1. compositeData.pItem一遍又一遍地计算,据我所知,即使我在付款输入中编辑它们,我仍然会从Payments.getAllItems()返回原始值。形式' - 那么问题是如何阻止这种重复计算呢?

  1. 付款输入自定义控件中的保存按钮似乎不会触发(单击时不会出现任何打印语句)我认为重新加载Object pItem会妨碍。
  2. 测试主文档控制:

    <?xml version="1.0" encoding="UTF-8"?>
    <xp:view xmlns:xp="http://www.ibm.com/xsp/core" 
    xmlns:xc="http://www.ibm.com/xsp/custom">
        <xp:this.data>
            <xp:dominoDocument var="WFSMainDoc" formName="frmMainDoc"
                computeWithForm="onsave" ignoreRequestParams="false">
                <xp:this.documentId><![CDATA[${javascript:var UNID:String = sessionScope.get("ssUNID");
    (UNID == null || UNID == "") ? "" : UNID}]]></xp:this.documentId>
                <xp:this.action><![CDATA[${javascript:if (sessionScope.containsKey("ssUNID")){
        if(sessionScope.get('ssUNID').length){
            sessionScope.get('ssAction') == 'edit' ? 'editDocument':'openDocument'
        } else {
            return 'createDocument'
            break;
        }
    }else{
        return "createDocument";
        break;
    }}]]></xp:this.action>
                <xp:this.databaseName><![CDATA[${appProps[sessionScope.ssApplication].appFilePath}]]></xp:this.databaseName>
            </xp:dominoDocument>
        </xp:this.data>
    
        Main document
        <xp:br></xp:br>
    
        <xp:inputText id="inputText1" value="#{WFSMainDoc.LinkKey}"
            defaultValue="#{javascript:@Unique}">
        </xp:inputText>
    
        <xp:br></xp:br>
        Other Fields and controls
        <xp:br></xp:br>
        <xp:panel id="panelPaymentContainer">
            <xp:repeat id="repeatData" rows="10" var="pItem"
                indexVar="rIndex">
                <xp:this.value><![CDATA[#{javascript:Payments.getAllItems(WFSMainDoc.getValue("LinkKey"));}]]></xp:this.value>
                <xp:button id="buttonEditPayment"
                    rendered="#{javascript:(WFSMainDoc.isEditable())}">
                    <xp:eventHandler event="onclick" submit="true"
                        refreshMode="partial" refreshId="panelPaymentsContainer">
                        <xp:this.action><![CDATA[#{javascript:try{
    viewScope.vsRIndex = rIndex;
    viewScope.vsShowPayment = true;
    break;
    }catch(e){
        WFSUtils.sysOut("Error in calling dialogPayment " + e.tostring)
    }}]]>
                        </xp:this.action>
                    </xp:eventHandler>
                </xp:button>
                <br />
    
            </xp:repeat>
            <xp:panel id="panelPaymentInput">
                <xp:this.styleClass><![CDATA[#{javascript:(viewScope.vsShowPayment) ? "" : "display=none";}]]></xp:this.styleClass>
    
    
                <xc:ccTestPaymentInput rendered="#{javascript:(viewScope.vsShowPayment)}">
                    <xc:this.pItem><![CDATA[#{javascript:try{
            var debug:Boolean = true;
            if (debug) WFSUtils.sysOut("Open existing row = " + viewScope.vsRIndex)
            rIndex = parseInt(viewScope.vsRIndex.toString());
            if (debug) WFSUtils.sysOut("rIndex = " + rIndex);
            pItem = Payments.getItem(rIndex);
            return pItem;
    
    }catch(e){
        WFSUtils.sysOut("Failure in Custom Prop of add item " + e.toString());
        return null;
    }}]]></xc:this.pItem>
                </xc:ccTestPaymentInput>
            </xp:panel>
        </xp:panel><!-- panelPaymentContainer -->
        <xp:br></xp:br>
        <xp:br></xp:br>
    </xp:view>
    

    付款输入控制

    <?xml version="1.0" encoding="UTF-8"?>
    <xp:view xmlns:xp="http://www.ibm.com/xsp/core">
    
        <xp:br></xp:br>
    
        Actual Pay Date:&#160; 
        <xp:inputText id="actualPayDate"
            value="#{compositeData.pItem.actualPayDate}">
            <xp:dateTimeHelper id="dateTimeHelper1"></xp:dateTimeHelper>
            <xp:this.converter>
                <xp:convertDateTime type="date"></xp:convertDateTime>
            </xp:this.converter>
        </xp:inputText>
        <br /> <br />
        <xp:button value="Save" id="button1">
                                <xp:eventHandler event="onclick"
                                    submit="true" refreshMode="partial" refreshId="panelPayments">
                                    <xp:this.action><![CDATA[#{javascript:try{
    
    var debug:Boolean = true;
    if (debug) print("Start Payment save");
    var pos:Integer = parseInt(viewScope.vsRIndex.toString());
    if (debug) print("Working with pos = " +  pos + " Call saveThisItem");
    
    if (Payments.saveThisItem(compositeData.pItem , pos)){
        if (debug) print("save Payments Worked ");
    }else{
        if (debug) print("save Payments FAILED ");
    }
    
    }catch(e){
        print("payment save Error " + e.tostring);
    
    }finally{
        viewScope.vsExpPayDate = "";
        viewScope.remove("vsShowPayment");
        viewScope.remove("vsRIndex");
        viewScope.remove("vsGotItem")
    }}]]></xp:this.action>
                                </xp:eventHandler>
        </xp:button>
    
    
    </xp:view>
    

1 个答案:

答案 0 :(得分:0)

这一切都非常复杂,我还远未了解你在这里想要实现的目标。但至少我在你的代码中发现了一些奇怪的东西:

广告1:有一个ID =&#34; panelPaymentContainer&#34;包含重复。在重复内部是一个按钮,在id =&#34; panelPayment s 容器&#34;上执行partialRefresh。 &GT;&GT;这是一个错字(复数与单数形式在&#34;付款)?按钮是否应该刷新面板? 假设这个假设是正确的:每次单击按钮时,面板都会与其所有内容一起刷新,从而刷新重复数据源。因此,pItem将始终从&#34;外部推送到#34;进入你重复的内容。 - 如果refreshId不是拼写错误,那应该是什么?我努力阅读整个代码,但其中有很多代码,所以我可能错过了一些东西

广告2:此处类似:保存按钮尝试使用id =&#34; panelPayments&#34;刷新某些内容,但我看不到任何有此ID的内容。所以难怪它似乎没有做任何有用的事情。

我对这些复杂任务的建议:尝试将所有内容剥离到最基本的要素;你的代码越复杂就越难找到它的错误。从一个面板,一个重复和一些简单的控件开始,如按钮和一堆计算字段,以显示一些测试值。然后,只要这个非常简单的模型工作,您就可以开始添加它。 - 简化也有助于其他人在你的概念中找到错误,顺便说一句。