我正在使用Extension Library和XPages来构建基于Web的工作流应用程序。一个功能是在提交对话框之前提示对话框并选择下一个批准者。
对于新文档,会出现对话框,并且在处于读取模式时也会出现。它永远不会打开保存的文档。我需要它在SSJS中工作,尽管该对话框在CSJS中打开。以下是一些代码:
xpMain.xsp
包含两个自定义控件:ccButtons
和ccWFloDialogs
。
ccButtons“提交”按钮:
getComponent('dlgNextOwner').show();
ccWFloDialogs“dlgNextOwner”对话框:
<xe:dialog id="dlgNextOwner" title="Select Supervisor">
<xe:formTable id="ftDlgNextOwner" formTitle="Select Supervisor"
formDescription="You may select a different supervisor."
disableErrorSummary="true">
<xp:this.facets>
<xe:formRow id="formRow1" xp:key="footer" for="txtWFloNextOwner"
labelWidth="125px">
<xp:inputText id="txtWFloNextOwner" style="width:200px"
value="#{viewScope.nextOwner}">
</xp:inputText>
<xe:namePicker id="npNextOwner" dialogTitle="Select Supervisor"
for="txtWFloNextOwner">
<xe:this.dataProvider>
<xe:dominoNABNamePicker addressBookSel="all-public"></xe:dominoNABNamePicker>
</xe:this.dataProvider>
</xe:namePicker>
</xe:formRow>
</xp:this.facets>
</xe:formTable>
</xe:dialog>
在CSJS中,我可以使用以下代码并成功打开对话框:
XSP.openDialog("#{id:dlgNextOwner}");
我也在扩展库中使用Mark Hughes' picklist,如果我删除包含控件和数据源的面板,则对话框会显示在SSJS中!代码在自定义控件中,但如果它直接在XPage中,则问题是相同的。以下是面板的代码:
<xp:panel
id="vendorDiv">
<xp:this.data>
<xp:dominoView
var="nvVend"
viewName="V_Vend"
ignoreRequestParams="true"
databaseName="other/lookupdb.nsf"
startKeys="#{javascript:viewScope.srchVend}">
</xp:dominoView>
</xp:this.data>
<xe:formTable
id="ftGetVendor"
disableErrorSummary="true"
labelPosition="above">
<xe:formRow
id="frVendor"
for="cfVendorName"
label="Name of the Vendor:">
<xp:text
escape="true"
id="cfVendorName"
value="#{currentDocument.VendorName}"
style="width:200px">
</xp:text>
<xc:viewpicklist
rowsPerPage="15"
buttonImage="./add.png"
tableClass="tablecellgreen"
headerClass="headerclass"
rowClass="odd, even"
searchBar="false"
searchButtonText="Search"
searchButtonClass="button2"
searchBarClass="headerclass"
pagerStyleFirst="navbutton1"
pagerStylePrevious="navbutton2"
pagerStyleCurrent="navbutton4"
pagerStyleNext="navbutton2"
pagerStyleLast="navbutton3"
typeAheadBar="true"
select="Column"
onReturn="Set Scope Value"
bottomBarClass="bottomround headerclass"
cancelButtonText="Cancel"
cancelButtonClass="button2 floatthisright"
type="Single Value"
finishButtonText="Finish"
finishButtonClass="button2 floatthisright"
multiSelectButtonAddImg="./add.png"
multiSelectButtonRemoveImg="./delete.png"
picklistButtonClass="button"
openDialogWith="Link"
picklistLinkImg="./add.png"
multiSelectLinkAddImg="./add.png"
multiSelectLinkRemoveImg="./delete.png"
selectWith="Link"
clearSearchImg="./cross.png"
SelectCellWidth="30px"
dialogID="dlgVend"
dialogTitle="Select a Vendor"
dialogWidth="80%"
refreshID="vendorDiv"
ssjsSelectFunction="getVendorInfo"
varName="viewScope.vendorInfo"
datasrc="nvVend"
selectColumn="4"
linkImg="./add.png"
typeAheadVar="viewScope.srchVend">
<xc:this.viewColumn>
<xp:value>0</xp:value>
<xp:value>1</xp:value>
<xp:value>2</xp:value>
<xp:value>3</xp:value>
</xc:this.viewColumn>
</xc:viewpicklist>
</xe:formRow>
<xe:formRow
id="frVendorStatus"
for="cfVendorStatus"
label="Vendor Registration Status:">
<xp:text
escape="true"
id="cfVendorStatus"
value="#{currentDocument.VendorStatus}">
</xp:text>
</xe:formRow>
<xe:formRow
id="frVendorCountry"
for="cfVendorCountry"
label="Country Name:">
<xp:text
escape="true"
id="cfVendorCountry"
value="#{currentDocument.VendorCountry}">
</xp:text>
</xe:formRow>
</xe:formTable>
</xp:panel>
请求的供应商信息填充字段,没有任何问题或错误。但是,这里的某些内容似乎阻止了使用SSJS打开对话框。
任何人都可以看到任何明显我失踪的东西吗?数据源在面板中,ignoreRequestParams为true(否则它不起作用)。
主要数据源位于整个XPage上下文中。我尝试在主面板外添加ccWFloDialog自定义控件,并将数据源更改为面板,但这不起作用。
有什么想法吗?
答案 0 :(得分:2)
暂时忘掉对话框。这可能与数据源有关。建议你先在xpage上使用它。有可见字段。然后可以使用render属性使其在xpage上工作,类似于对话框的显示方式。一旦你有了工作,那么你应该善于申请对话。这个想法是先将对话框从等式中取出,以确保它正常工作。
答案 1 :(得分:0)
相反,我决定使用CSJS而不是SSJS打开对话框。我已经改变了一些逻辑,并且还需要做更多工作来完成项目的这一部分。谢谢大家!