- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Java Web 应用程序中使用了 pickList。但是当我测试它时,值没有移动到目标列表。我单独做了这个,效果很好。然后我复制了代码并将其粘贴到我的原始页面中,但它不起作用我不明白为什么需要帮助
这是我的工作 xhtml 代码:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<title>Mobitel - IPP - Areas</title>
</h:head>
<h:body>
<h:form>
<p:tabView id="areas_TV" activeIndex="1">
<p:tab id="create_area_T" title="Create">
<p:growl id="msg" showDetail="true" escape="false" />
<h3 style="margin-top:0">Basic PickList</h3>
<p:pickList id="pickList" value="#{a_Area1.addResorcesipList}" var="city"
itemLabel="#{city}" itemValue="#{city}" />
<p:commandButton id="citySubmit" value="Submit"
update="displayCities" oncomplete="cityDialog.show()" style="margin-top:5px"/>
<p:dialog modal="true" showEffect="fade" hideEffect="fade" widgetVar="cityDialog">
<h:panelGrid id="displayCities" columns="2">
<h:outputText value="Source: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.addResorcesipList.source}" var="item">
<h:outputText value="#{item}" style="margin-right:5px" />
</ui:repeat>
<h:outputText value="Target: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.addResorcesipList.target}"var="item">
<h:outputText value="#{item}" style="margin-right:5px" />
</ui:repeat>
</h:panelGrid>
</p:dialog>
</p:tab>
</p:tabView>
</h:form>
</h:body>
我用选项卡复制了此内容并粘贴到原始文件中,但不起作用,这是原始文件:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<title>Mobitel - IPP - Areas</title>
</h:head>
<h:body>
<p:layout fullPage="true" id="layout">
<p:layoutUnit position="north" size="20%" resizable="false">
<h:form id="TopMenuBarItems_F">
<p:menu id="TopMenuBar">
<f:facet name="aaa">
<h:form id="topform">
<p:menuButton id="logout_MBtn" value="Logout" style="margin-right:10px"/>
</h:form>
</f:facet>
</p:menu>
</h:form>
</p:layoutUnit>
<p:layoutUnit position="center">
<h:form id="tabMenuItems_F">
<p:tabMenu activeIndex="2">
<p:menuitem id="instance_M" value="Instance" url="/faces/A_Instance.xhtml"/>
<p:menuitem id="resources_M" value="Resources" url="/faces/A_Resources.xhtml"/>
<p:menuitem id="areas" value="Areas" url="/faces/A_Areas.xhtml"/>
<p:menuitem id="subnets_M" value="Subnets" url="/faces/A_Subnet.xhtml"/>
<p:menuitem id="vlsm" value="VLSM" url="/faces/A_VLSM.xhtml"/>
<p:menuitem id="ipAddress" value="IP Address" url="/faces/A_IP_Address.xhtml"/>
<p:menuitem id="logout_MBtn" value="Logout" icon="ui-icon-extlink" style="margin-right:10px"/>
</p:tabMenu>
<p:tabView id="areas_TV" activeIndex="1">
<p:tab id="create_area_T" title="Create">
<p:growl id="msg2"/>
<h:panelGrid columns="2" cellpadding="10">
<h:outputText value="AreaName :"/>
<p:inputText id ="areaNAme_Tbx" value="#{a_Area1.areaName}" />
<h:outputText value="Instance :"/>
<p:selectOneMenu id="suburbs" value="#{a_Area1.selectedInstanceId}" >
<f:selectItem itemLabel="Select instance" itemValue="" />
<f:selectItems value="#{a_Area1.instanceList}" />
<p:ajax event="change" update=":tabMenuItems_F:areas_TV:msg2,:tabMenuItems_F:areas_TV:pickList"
listener="#{a_Area1.setIpSource2(a_Area1.selectedInstanceId)}"/>
</p:selectOneMenu>
</h:panelGrid>
<h:outputText value="Resources :"/>
<p:pickList id="pickList" value="#{a_Area1.ipList}" var="ip"
itemLabel="#{ip}" itemValue="#{ip}" />
<p:commandButton id="citySubmit" value="Submit" update=":tabMenuItems_F:areas_TV:msg2" action="#{a_Area1.createArea()}" style="margin-top:5px"/>
<h:panelGrid id="displayCities" columns="2">
<h:outputText value="Source: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.ipList.source}" var="item">
<h:outputText value="#{item}" style="margin-right:5px" />
</ui:repeat>
<h:outputText value="Target: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.ipList.target}" var="item">
<h:outputText value="#{item}" style="margin-right:5px" />
</ui:repeat>
</h:panelGrid>
</p:dialog>
-->
</p:tab>
<p:tab id="view_area_T" title="View">
<h:panelGrid columns="1" cellpadding="10">
<h:form id="area_Tbl">
<p:dataTable id="Area_dataTable" var="area" value="#{a_Area1.areaList}" editable="true">
<p:ajax event="rowEdit" listener="#{a_Area1.onEdit(area)}" />
<p:column id="areaName_Clm" filterBy="#{area.areaName}"
headerText="Area Name" filterMatchMode="startsWith" >
<p:cellEditor>
<f:facet name="output">
<h:outputText value="#{area.areaName}" />
</f:facet>
<f:facet name="input">
<p:inputText value="#{area.areaName}"/>
</f:facet>
</p:cellEditor>
</p:column>
<p:column id="InstanceName_Clm" filterBy="#{area.areaName}"
headerText="Area Name" filterMatchMode="startsWith" >
#{area.instanceName}
</p:column>
<p:column style="width:6%">
<p:rowEditor/>
</p:column>
<p:column style="width:20%" headerText="Delete Area">
<p:commandLink id="delete_btn" value="Delete" actionListener="#{a_Area1.deleteArea(area)}"
update=":tabMenuItems_F:areas_TV:area_Tbl:Area_dataTable:"
process=":tabMenuItems_F:areas_TV:area_Tbl:Area_dataTable:">
<p:collector value="#{area}" removeFrom="#{a_Area1.areaList}" />
</p:commandLink>
</p:column>
</p:dataTable>
showEffect="fade"hideEffect="explode"modal="true">
<h:panelGrid id="display" columns="2" cellpadding="4" style="margin:0 auto;">
<h:outputText value="Resource IP"/>
<p:dataList value="{a_Area1.selectedRow.resourceList}" var="resource" itemType="disc">
{resource}
</p:dataList>
</h:panelGrid>
</p:dialog>
-->
</h:form>
</h:panelGrid>
</p:tab>
<p:tab id="edit_resorce_area_T" title="Edit Resource">
<h3 style="margin-top:0">Basic PickList</h3>
<p:pickList id="pickList1" value="#{a_Area1.addResorcesipList}" var="city"
itemLabel="#{city}" itemValue="#{city}" />
<p:commandButton id="citySubmit1" value="Submit" update="displayCities" oncomplete="cityDialog.show()" style="margin-top:5px"/>
<p:dialog modal="true" showEffect="fade" hideEffect="fade" widgetVar="cityDialog">
<h:panelGrid id="displayCities" columns="2">
<h:outputText value="Source: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.addResorcesipList.source}" var="item1">
<h:outputText value="#{item1}" style="margin-right:5px" />
</ui:repeat>
<h:outputText value="Target: " style="font-weight:bold"/>
<ui:repeat value="#{a_Area1.addResorcesipList.target}" var="item1">
<h:outputText value="#{item1}" style="margin-right:5px" />
</ui:repeat>
</h:panelGrid>
</p:dialog>
</p:tab>
</p:tabView>
</h:form>
</p:layoutUnit>
</p:layout>
</h:body>
第一个选项列表有效,编辑资源选项卡中的第二个选项列表有问题。
这是java文件:
private List<String>addResourceIpSource = new ArrayList<String>();
private List<String>addResourceIpTarget = new ArrayList<String>();
private DualListModel<String> AddResorcesipList;
public void setIpSource() throws SQLException, ClassNotFoundException{
String q = "SELECT * FROM ipp.resource;";
ResultSet result = DB_Access.getData(q);
while(result.next()){
resourceRow r = new resourceRow();
r.setIpAddress(result.getString(1));
addResourceIpSource.add(result.getString(1));
}
//ipSource.add("select resource for perticuler instance..");
// ipList = new DualListModel<String>(ipSource, ipTarget);
AddResorcesipList = new DualListModel<String>(addResourceIpSource, addResourceIpTarget);
}
在类构造函数中调用函数......
最佳答案
我以前也遇到过类似的问题。最初不会警告后续使用,但它可能会使primeface逻辑困惑。不要像下面这样使用。
<h:form>
<h:form></h:form>
</h:form>
关于java - Primefaces 选择列表数据未从源传输到目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15153003/
我想为每个条显示不同颜色的 primefaces 条形图。我得到的最接近的就像图像: 我想用不同的颜色来表示这些条,比如绿色代表“准时”,黄色代表“警告”,红色代表“逾期” 我尝试使用 model.s
我对 Primefaces 3 对话框的构造感到困惑。 我在 SO 中看到了具有这种模式的问题。表单在对话框之外。 但另一个问题有这个。 Primef
我尝试使用一个简单的gmap示例开始开发Web应用程序,但是它对我不起作用。 我使用了在网页上找到的示例电影收藏家。我只在template.html文件中包含了这个代码。 我收到此错误: javax.
我正在使用 primefaces 3.0。我有三个文本字段,其中任何一个都是必需的。我如何在 primefaces 中验证这一点。请帮忙..谢谢 最佳答案 通常,当在组件上使用自定义 f:valida
我正在尝试为 primefaces 选择列表创建自定义过滤器。当我按照手册中的说明进行操作时,我在 primefaces 的某处遇到了 TypeError。 我对picklist的定义 我的过滤
我正在努力处理primefaces日历。我需要的是,如果今天是 2011 年 7 月 28 日,我可以限制用户选择 7 月 28 日之前 1 年和 7 月 28 日之后 3 年的日期。 我查看了 pr
有没有办法删除 p:datatable 标题上的全选复选框。 我需要单个行上的复选框,而不是标题上的复选框。 最佳答案 这非常有效: .ui-chkbox.ui-chkbox-all.ui-widge
Primefaces 3.5,Mojarra 2.1.14。这是我的 PF 数据表,它包含一个名为“自动”的不可编辑 bool 列和可编辑的“标签”列:
我想在向导的最后一个选项卡上隐藏后退按钮。 我正在使用素面。它的解决方案是什么? 谢谢 最佳答案 您可以使用 jQuery 在客户端执行此操作: 假设您正在使用展示中的向导:http://www.pr
如果我在 PrimeFaces 数据表中设置属性“scrollable=true”,它可以垂直滚动。但是可以水平滚动这个表格吗? 最佳答案 Primefaces 支持在数据表上水平滚动。只需像这样指定
我有这个代码。在用户选择一行并关闭对话框之后,它将触发rowSelect事件。在我更新为primfaces 3.3(我安装了ver3.2)之前,它工作得很好。我在控制台中没有任何异常,当我调试时,我看
是否存在任何方法来设置 primefaces 的日历组件的年份列表? 最佳答案 对于年份列表,您可以使用 navigator="true" p:calendar 中素面的属性标记和年份范围 c-100
我正在使用 primefaces 3.2。我已经准备好了向导,可以在数据表的同一页面上插入用户信息。向导逐个选项卡获取信息并在确认选项卡上提交。它还将反射(reflect)在数据表的同一页面上。它运行
我有一个 p:treeTable,树内容都在一列中。该树是一个共享组件,因此我的某些页面需要列标题,而有些则不需要。在列标题为空的页面中,它为列标题创建一个空行,这是我不想要的。我确实想要列内容,只是
我使用的是primefaces 3.4,我在 p:overlaypanel 中有一个 p:calendar 。当我选择日期时,覆盖面板关闭(使用 Google Chrome 时)当我使用 Firefo
当我使用日历时,我将“timeOnly”设置为“true”,将“pattern”设置为“HH:mm a”。 当输入时间大于或等于“13:00 pm”时,日历每次获得焦点,都会 自动将时间更改为“23:
我也在尝试获取枚举“CityCodes.java”中定义的城市代码,这是我的枚举类,我的定义如下: public enum Cities { AL("Alabama","1"), AK("Alaska
在 PrimeFaces 展示页面上有一个简单的标题栏,适合实际主题。我的意思是此页面上的“欢迎来到 PrimeFaces 展示”文本:http://www.primefaces.org/showca
是否可以在 Primefaces 中创建垂直菜单栏? 我习惯了像 Ext-JS 这样简单的纯 AJax 框架,但到目前为止我还没有在 PF 中看到这样的组件。 谢谢, 乔 最佳答案 它被称为分层菜单。
是否可以设置 Primefaces 的 ScrollPanel 的滚动速度? Scrollpanel 在“ native ”模式下的滚动速度可以,但在“默认”模式下不行。 我使用的是 Primefac
我是一名优秀的程序员,十分优秀!