- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个任务流,任务流 A 将页面片段 (.jsff) 作为 View ,任务流 B 将页面 (.jspx) 作为 View 。它们都是有界的。是否可以从任务流 A View 中发生的任何操作打开该页面(任务流 B)?
这是我的情况。我有一个有界任务流 album-task-flow.xml。它有两个 View album-list.jsff 和 album-details.jsff。可以交换这些 View 。此任务流已添加到 af:region 中的页面。
View album-details.xml 有图像。在每张图片旁边我都有一个链接。单击该链接后,我必须在新选项卡中显示该图像,并且必须打开浏览器的打印选项对话框。
我怎样才能实现这个功能?
最佳答案
我创建了 album.jspx:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable"
xmlns:pe="http://xmlns.oracle.com/adf/pageeditor">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document id="d1" title="#{applicationScope.navigationContext.currentNavigationModel.currentSelection.title}">
<af:form id="f1" usesUpload="true">
<af:pageTemplate viewId="/oracle/webcenter/portalapp/pagetemplates/WF_Template.jspx"
value="#{bindings.pageTemplateBinding}" id="pt1">
<f:facet name="content">
<pe:pageCustomizable id="pageCustomizable1" inlineStyle="width:968px;">
<f:facet name="editor">
<pe:pageEditorPanel id="pep1"/>
</f:facet>
<af:panelGroupLayout layout="vertical" id="pgl1">
---
<af:region value="#{bindings.albumtaskflow1.regionModel}" id="albumrg"/>
---
</af:panelGroupLayout>
</pe:pageCustomizable>
</f:facet>
</af:pageTemplate>
</af:form>
</af:document>
</f:view>
</jsp:root>
在区域“albumrg”的这个页面中,我添加了一个任务流 album-task-flow。此相册任务流添加了两个页面片段作为 View :
<?xml version="1.0" encoding="UTF-8" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
<task-flow-definition id="album-task-flow">
<default-activity id="__1">album-list</default-activity>
<managed-bean id="__15">
<managed-bean-name id="__13">album</managed-bean-name>
<managed-bean-class id="__14">com.mhis.webfactory.taskflow.album.AlbumManagedBean</managed-bean-class>
<managed-bean-scope id="__12">pageFlow</managed-bean-scope>
</managed-bean>
<view id="album-list">
<page>/oracle/webcenter/portalapp/pagefragments/taskflow/album/album-list.jsff</page>
</view>
<view id="album-details">
<page>/oracle/webcenter/portalapp/pagefragments/taskflow/album/album-details.jsff</page>
</view>
<control-flow-rule id="__2">
<from-activity-id id="__3">album-list</from-activity-id>
<control-flow-case id="__4">
<from-outcome id="__6">goToDetail</from-outcome>
<to-activity-id id="__5">album-details</to-activity-id>
</control-flow-case>
</control-flow-rule>
<control-flow-rule id="__7">
<from-activity-id id="__8">album-details</from-activity-id>
<control-flow-case id="__10">
<from-outcome id="__11">goToList</from-outcome>
<to-activity-id id="__9">album-list</to-activity-id>
</control-flow-case>
</control-flow-rule>
<use-page-fragments/>
</task-flow-definition>
</adfc-config>
从这段代码我们可以看到有两个view:album-list和album-details,并且定义了一个managed bean album。它还具有两个控制流规则。这些规则用于导航或交换 View 专辑列表和专辑详细信息。
专辑列表包含专辑列表。这是基于来自 UCM 的数据创建的模型。这不是我认为的主题部分。每个 Album 项目都有一个 commandLink,通过它可以进入 Detail View 。详细 View 由该特定相册的图像缩略图组成。
我没有给出这两个页面片段的代码。唯一需要的是 commandLink 位于每个图像缩略图下方,单击该链接将打开一个新选项卡或窗口。新打开的标签页面将只有该缩略图的放大图像或原始图像。此外,当此选项卡打开时,必须打开浏览器的打印对话框才能打印该页面。我想我让您能够理解我的要求。
这是该 commandLink 的代码以及我的解决方案:
<af:iterator value="#{pageFlowScope.album.albumDetailCurrent}" id="i4" var="images" varStatus="parentStatus"
rows="#{pageFlowScope.album.numberOfAlbumDetailRow}">
<af:iterator value="#{images}" var="image" id="i5" varStatus="childStatus">
<af:commandLink styleClass="btnPrint" id="cl10" actionListener="#{pageFlowScope.album.printImage}">
<f:attribute name="parentStatus" value="#{parentStatus.index}"/>
<f:attribute name="childStatus" value="#{childStatus.index}"/>
</af:commandLink>
</af:iterator>
</af:iterator>
图片缩略图封装成List>的数据结构。
现在我创建了另一个任务流。这是任务流B,即album-printtask-flow。
<?xml version="1.0" encoding="UTF-8" ?>
<adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
<task-flow-definition id="album-printtask-flow">
<default-activity id="__1">album-detail-print</default-activity>
<managed-bean id="__4">
<managed-bean-name id="__3">albumPrint</managed-bean-name>
<managed-bean-class id="__6">com.mhis.webfactory.taskflow.album.AlbumPrintManagedBean</managed-bean-class>
<managed-bean-scope id="__5">pageFlow</managed-bean-scope>
</managed-bean>
<view id="album-detail-print">
<page id="__2">/oracle/webcenter/portalapp/pages/album-detail-print.jspx</page>
</view>
</task-flow-definition>
</adfc-config>
从代码中我们可以看到这个任务流有一个 jspx 页面,即 album-detail-print.jspx 作为它的默认 View ,还有一个名为 albumPrint 的托管 bean。
我需要的是在新选项卡中打开此任务流。因此,从上述 commandLink 的 actionListener,我这样做了:
public void printImage(ActionEvent event) {
String taskflowDocument = "/WEB-INF/album-printtask-flow.xml";
String taskflowId = "album-printtask-flow";
Integer parentStatus = (Integer)event.getComponent().getAttributes().get("parentStatus");
Integer childStatus = (Integer)event.getComponent().getAttributes().get("childStatus");
FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("image", getAlbumDetailCurrent().get(parentStatus).get(childStatus));
Map<String, Object> params = new HashMap<String, Object>();
String taskflowURL = ControllerContext.getInstance().getTaskFlowURL(false,new TaskFlowId(taskflowDocument,taskflowId),params);
FacesContext context = FacesContext.getCurrentInstance();
ExtendedRenderKitService service = Service.getRenderKitService(context, ExtendedRenderKitService.class);
StringBuilder script = new StringBuilder();
script.append("window.open(\""+taskflowURL+"\");");
service.addScript(FacesContext.getCurrentInstance(), script.toString());
}
这是在新选项卡中打开 album-detail-print.jspx。以下代码来自album-detail-print.jspx:
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
<f:view>
<af:document id="d1" title="Print">
<af:resource type="javascript" source="/js/js/jquery-1.7.1.min.js"/>
<af:form id="f1">
<af:image source="http://#{facesContext.externalContext.request.serverName}/file/#{pageFlowScope.albumPrint.image.docName}&Rendition=Web" id="i3" shortDesc="#{pageFlowScope.albumPrint.image.title}"/>
</af:form>
<af:resource type="javascript">
$(document).ready(function () {
window.print();
});
</af:resource>
</af:document>
</f:view>
</jsp:root>
这是 AlbumPrintManagedBean:
package com.mhis.webfactory.taskflow.album;
import com.mhis.portal.backing.main.JSFUtils;
import com.mhis.webfactory.taskflow.album.model.Image;
import java.util.List;
import java.util.Map;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpSession;
public class AlbumPrintManagedBean {
private Image image;
public AlbumPrintManagedBean() {
super();
image = (Image)FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("image");
}
private String jym="JYM";
public void setImage(Image image) {
this.image = image;
}
public Image getImage() {
return image;
}
}
关于java - 从另一个调用有界任务流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10619882/
Task.WaitAll 方法等待所有任务,Task.WaitAny 方法等待一个任务。如何等待任意N个任务? 用例:下载搜索结果页面,每个结果都需要一个单独的任务来下载和处理。如果我使用 WaitA
我正在查看一些像这样的遗留 C# 代码: await Task.Run(() => { _logger.LogException(LogLevel.Error, mes
如何在 Linux 中运行 cron 任务? 关注此Q&A ,我有这个 cron 任务要运行 - 只是将一些信息写入 txt 文件, // /var/www/cron.php $myfile = fo
原谅我的新手问题,但我想按顺序执行三个任务并在剧本中使用两个角色: 任务 角色 任务 角色 任务 这是我到目前为止(任务,角色,任务): --- - name: Task Role Task ho
我有一个依赖于 installDist 的自定义任务 - 不仅用于执行,还依赖于 installDist 输出: project.task('run', type: JavaExec, depends
从使用 Wix 创建的 MSI 运行卸载时,我需要在尝试删除任何文件之前强行终止在后台运行的进程。主要应用程序由一个托盘图标组成,它反射(reflect)了 bg 进程监控本地 Windows 服务的
我想编写 Ant 任务来自动执行启动服务器的任务,然后使用我的应用程序的 URL 打开 Internet Explorer。 显然我必须执行 startServer先任务,然后 startApplic
使用 ASP.NET 4.5,我正在尝试使用新的 async/await 玩具。我有一个 IDataReader 实现类,它包装了一个特定于供应商的阅读器(如 SqlDatareader)。我有一个简
使用命令 gradle tasks可以得到一份所有可用任务的报告。有什么方法可以向此命令添加参数并按任务组过滤任务。 我想发出类似 gradle tasks group:Demo 的命令筛选所有任务并
除了sshexec,还有什么办法吗?任务要做到这一点?我知道您可以使用 scp 复制文件任务。但是,我需要执行其他操作,例如检查是否存在某些文件夹,然后将其删除。我想使用类似 condition 的东
假设我有字符串 - "D:\ApEx_Schema\Functions\new.sql@@\main\ONEVIEW_Integration\3" 我需要将以下内容提取到 diff 变量中 - 文档名
我需要编写一个 ant 任务来确定某个文件是否是只读的,如果是,则失败。我想避免使用自定义选择器来为我们的构建系统的性质做这件事。任何人都有任何想法如何去做?我正在使用 ant 1.8 + ant-c
这是一个相当普遍的计算机科学问题,并不特定于任何操作系统或框架。 因此,我对与在线程池上切换任务相关的开销感到有些困惑。在许多情况下,给每个作业分配自己的特定线程是没有意义的(我们不想创建太多硬件线程
我正在使用以下 Ansible playbook 一次性关闭远程 Ubuntu 主机列表: - hosts: my_hosts become: yes remote_user: my_user
如何更改 Ant 中的当前工作目录? Ant documentation没有 任务,在我看来,最好的做法是不要更改当前工作目录。 但让我们假设我们仍然想这样做——你会如何做到这一点?谢谢! 最佳答案
是否可以运行 cronjob每三天一次?或者也许每月 10 次。 最佳答案 每三天运行一次 - 或更短时间在月底运行一次。 (如果上个月有 31 天,它将连续运行 2 天。) 0 0 */3 * *
如何在 Gradle 任务中执行托管在存储库中的工具? 在我的具体情况下,我正在使用 Gradle 构建一个 Android 应用程序。我添加了一项任务,将一些 protobuf 数据从文本编码为二进
我的项目有下一个结构: Root |- A |- C (depends on A) \- B (depends on A) 对于所有子项目,我们使用自己的插件生成资源:https://githu
我设置了一个具有4个节点的Hadoop群集,其中一个充当HDFS的NameNode以及Yarn主节点。该节点也是最强大的。 现在,我分发了2个文本文件,一个在node01(名称节点)上,一个在node
在 TFS 2010 中为多个用户存储任务的最佳方式是什么?我只能为一项任务分配一个。 (例如:当我计划向所有开发人员演示时) (这是一个 Scrum Msf 敏捷项目,其中任务是用户故事的一部分)
我是一名优秀的程序员,十分优秀!