数据源无法保存richText项



我在Xpage上使用eventandler来保存我的数据源(frmData):

<xp:eventHandler
    id="saveEventHandler"
    submit="true"
    save="true"
    event="calledbyid"
    refreshMode="complete"
>
    <xp:this.action><![CDATA[#{javascript:frmData.save();
    context.redirectToPage("index.xsp")}]]></xp:this.action>
</xp:eventHandler>

由自定义属性调用:

<xe:basicLeafNode
onClick="XSP.executeOnServer('#{id:saveEventHandler}')"
label="Save"
rendered="#{javascript:currentDocument.isEditable()}"
>
</xe:basicLeafNode>

这是Jeremy Hodge先生的代码客户端到服务器站点触发:

XSP.executeOnServer = function () {
// must supply event handler id or we're outta here....
if (!arguments[0])
    return false;
// the ID of the event handler we want to execute
var functionName = arguments[0];
// OPTIONAL - The Client Side ID that you want to partial refresh after executing    the event handler
var refreshId = (arguments[1]) ? arguments[1] : "@none";
var form = (arguments[1]) ? this.findForm(arguments[1]) : dojo.query('form')[0];
// catch all in case dojo element has moved object outside of form...
if (!form)
    form = dojo.query('form')[0];
// OPTIONAL - Options object contianing onStart, onComplete and onError functions for the call to the
// handler and subsequent partial refresh
var options = (arguments[2]) ? arguments[2] : {};
// OPTIONAL - Value to submit in $$xspsubmitvalue. can be retrieved using context.getSubmittedValue()
var submitValue = (arguments[3]) ? arguments[3] : '';
// Set the ID in $$xspsubmitid of the event handler to execute
dojo.query('[name="$$xspsubmitid"]')[0].value = functionName;
dojo.query('[name="$$xspsubmitvalue"]')[0].value = submitValue;
this._partialRefresh("post", form, refreshId, options);
}

表单上所有字段的值都已保存,除了一个是富文本项。

当我使用简单的按钮onclick事件,而不是使用上面的even处理程序,那富文本项目保存!!

<xp:button
    value="Label"
    id="button1"
    xp:key="facet_3"
> 
<xp:eventHandler
    event="onclick"
    submit="true"
    refreshMode="complete"
>
    <xp:this.action>
    <xp:saveDocument
    var="frmData"
    >
        </xp:saveDocument>
    </xp:this.action>
</xp:eventHandler>
</xp:button>

请告诉我如何处理这个事件处理程序?

mak

我不知道问题是与富文本项目或提交的方法。我注意到的一件事是,您只向XSP.executeOnServer()传递了一个参数,因此它将推断提交ID和提交值。

您是否可以使用Firebug或类似的东西来检查在单击按钮时以及在XPage生命周期的其余时间内提交给服务器的内容?很难从一个问题中排除页面生命周期过程的故障。

如果没有提交ID或提交值被传递回服务器,则单击该按钮时不会更新页面上的数据源或组件。它将只保存数据源,并根据先前部分刷新的数据源存储任何值。

每当触发部分刷新时,XPage的服务器端映射中的一些内容将被更新。因此,之前的任何部分刷新都可能在触发XSP.executeOnServer()之前用值更新数据源。如果值已经通过部分刷新传递回数据源,这些值将被保存,因为它们已经在数据源中,而不是因为它们被XSP.executeOnServer()再次传递。

如果Firebug显示的提交id或提交值包含传递回服务器的数据源,则这些值将被传递回数据源,在这种情况下,可能存在特定于Rich Text Items的问题。

相关内容

  • 没有找到相关文章

最新更新