XPages getComponent()无法正常工作

时间:2018-01-18 11:54:37

标签: javascript jquery dialog xpages ssjs

我有一个XPage,它使用JQuery对话框和客户端验证来验证用户进程的输入。问题是,当我单击“添加”按钮时,客户端验证工作正常,但这些字段中的属性“不能”。在服务器端找到。当用户点击“打开对话框”时按钮显示对话框,这是魔法发生的按钮(仅限一个属性,例如):

<xp:button id="save_part_btn" value="+Add" style="float:right;">
             <xp:eventHandler event="onclick" submit="true"
                refreshMode="complete">
                <xp:this.action><![CDATA[#{javascript:
                    /*          
                    var estdoc:NotesDocument=database.getDocumentByUNID(doc_source.getDocument().getParentDocumentUNID())
                    var estPartdoc:NotesDocument=estdoc.getParentDatabase().createDocument()

                    Ignore it

                    estPartdoc.replaceItemValue('Form','Estimate_Cost_Part')
                    estPartdoc.replaceItemValue('Predoc',estdoc.getUniversalID())
                    estPartdoc.replaceItemValue('$OSN_IsSaved','1')
                    */

                    estPartdoc.replaceItemValue('TSNB_All',getComponent('input_tsnb_all').getValue())

                }]]></xp:this.action>

                        <xp:this.script><![CDATA[ 

                            var isValid = true;
                            var result = "";

                            function isStringEmpty(string2Check) 
                            {
                                return string2Check == "" || string2Check[0] == " ";
                            }

                            function isNumberCorrect(number2Check) 
                            {
                                return /^[1-9]\d*(,\d{1,3})?$/.test(number2Check.toString());
                            }


                            if(isStringEmpty(document.getElementById("#{id:input_tsnb_all}").value)) 
                            {
                                wholeValid = false;
                                result += '-The field cannot be empty\n'
                            }
                            else if(!isNumberCorrect(document.getElementById("#{id:input_tsnb_all}").value)) 
                            {
                                wholeValid = false;
                                result += '-The field is not correct\n'
                            }

                            if(!isValid)    
                            alert(result) 
                            return isValid;  

                ]]></xp:this.script>
            </xp:eventHandler>
</xp:button>

客户端验证工作正常 - 当用户的输入不正确时显示alert消息。但是,在服务器端找不到input_tsbn_all,并且无法创建具有此属性的文档。实际上它确实如此,但是null中的input_tsbn_all值。有什么问题?

该物业的标记是:

<xp:tr>
    <xp:td><xp:label value="All:"/></xp:td>
       <xp:td>
          <xp:inputText id="input_tsnb_all"
                            disableClientSideValidation="true"
                            styleClass="doc_field_textinput"  size="40" >
            <xp:this.converter>
                    <xp:convertNumber pattern="0.000"></xp:convertNumber>
            </xp:this.converter>
            </xp:inputText>
    </xp:td>
</xp:tr>

我的JQuery代码:

    var dialogAddPartDiv = $('.dialogAddPart'); 

      $('.addButton').click(function() 
      {
        dialogAddPartDiv.dialog('open');
      });

      dialogAddPartDiv.dialog(
      {
      create: function (event, ui) {


                    $(".ui-corner-all").css('border-bottom-right-radius','8px');
                    $(".ui-corner-all").css('border-bottom-left-radius','8px');
                    $(".ui-corner-all").css('border-top-right-radius','8px');
                    $(".ui-corner-all").css('border-top-left-radius','8px');

                    $(".ui-dialog").css('border-bottom-left-radius','0px');
                    $(".ui-dialog").css('border-bottom-right-radius','0px');
                    $(".ui-dialog").css('border-top-left-radius','0px');
                    $(".ui-dialog").css('border-top-right-radius','0px');

                    $('.ui-dialog-titlebar-close').css('margin', '-25px -20px 0px 0px').css('border', 'solid 2px').css('border-radius', '15px').css('border-color', '#05788d');
                    $('.ui-dialog-titlebar-close').css('width', '25px').css('height', '25px');
                },

        autoOpen: false,
        modal: true,
        beforeClose : function(event) 
        {
            if(!confirm("This won't be saved. Continue?"))
            {
            return false;
            }
            else 
            {

            }
        },
        width:600,
        resizable: false
      });
document.getElementsByClassName('ui-dialog-titlebar-close')[0].setAttribute('title', 'Close it?');

隐藏的div只是在页面上声明如下:<xp:div styleClass="dialogAddPart">

1 个答案:

答案 0 :(得分:1)

您需要将输入绑定到通过请求持久存在的对象属性。一个愚蠢的例子可能是利用viewScope对象是一个Map。

<xp:inputText id="input_tsnb_all" value="#{viewScope.myInput}">
    ...

稍后您将在代码中执行的操作是查找viewScope.myInput变量以执行您想要的操作,而不是在ViewRoot树中找到该组件。

我最好的建议是鼓励你建立一些JSF基础知识,以便了解为什么这样做。

唉,XPages使得JSF以最糟糕的方式迭代,以正确的方式学习东西。其中大部分都推动了一个基本概念 - 旧的Notes开发人员思维模式 - 阻止您按照预期的方式运行框架,即MVC。

我不会告诉你要避免这样做,因为你在互联网上看到的关于这个主题的大部分内容都是老式的汤。但是,如果你关心,甚至一点点,拿一本不太新的JSF书并从那里学习。或者,您可以免费查看here。当然,您需要使用XPage中实际可用的内容来调解您所阅读的内容,因为我很遗憾,XPages本身就是对JSF的解释。