gpt4 book ai didi

java - RichFaces ajax commandButton 问题

转载 作者:行者123 更新时间:2023-12-02 08:07:34 25 4
gpt4 key购买 nike

嗨,我有一个问题 <a4j:commandButton>当我出于某种原因按下它后,此页面上的所有按钮都会改变其样式

如有任何建议,我们将不胜感激我上传了一个视频,显示了我的问题 @ 0:10 秒 http://www.screencast.com/users/Schyzotrop/folders/Jing/media/b54aece2-4a97-45dc-99eb-76a7fbe29002谢谢

        <a4j:form id="form" ajaxSubmit="true">
<a4j:commandButton id="butNC" limitToList="true" action="#{category.createSetup}" value="New Category" />
<a4j:commandButton reRender="catDataScroller" onclick=""></a4j:commandButton>
<rich:dataTable id="categoryList" value="#{category.categoryItems}"
var="item" rows="10" width="100%">
<f:facet name="header">
<h:outputText value="Listing Category Items" />
</f:facet>
<rich:column width="10%" style="text-align:center">
<f:facet name="header">
<h:outputText value="Name" />
</f:facet>
<h:outputText value="#{item.name}" />
</rich:column>
<rich:column width="75%">
<f:facet name="header">
<h:outputText value="Description"/>
</f:facet>
<h:outputText value="#{item.description}"/>
</rich:column>
<rich:column style="text-align:center">
<f:facet name="header">
<h:outputText value="Actions"/>
</f:facet>
<a4j:commandButton value="Show" action="#{category.detailSetup}">
<f:param name="jsfcrud.currentCategory" value="#{jsfcrud_class['classes.util.JsfUtil'].jsfcrud_method['getAsConvertedString'][item][category.converter].jsfcrud_invoke}"/>
</a4j:commandButton>
<h:outputText value=" "/>
<a4j:commandButton value="Edit" action="#{category.editSetup}">
<f:param name="jsfcrud.currentCategory" value="#{jsfcrud_class['classes.util.JsfUtil'].jsfcrud_method['getAsConvertedString'][item][category.converter].jsfcrud_invoke}"/>
</a4j:commandButton>
<h:outputText value=" "/>
<a4j:commandButton value="Destroy" limitToList="true" action="#{category.destroy}" type="submit">
<%--<f:param name="jsfcrud.currentCategory" value="#{jsfcrud_class['classes.util.JsfUtil'].jsfcrud_method['getAsConvertedString'][item][category.converter].jsfcrud_invoke}"/>--%>
<h:outputText value="#{item.categoryID}"/>
<h:outputText value=" #{jsfcrud_class['classes.util.JsfUtil'].jsfcrud_method['getAsConvertedString'][item][category.converter].jsfcrud_invoke}"/>
<f:param name="catID" value="#{item.categoryID}"/>
</a4j:commandButton>
</rich:column>
</rich:dataTable>
<rich:spacer height="30" />
<rich:datascroller id="catDataScroller" for="categoryList" maxPages="10"/>
<rich:messages style="color:red"></rich:messages>
</a4j:form>

最佳答案

加载 rich:dataTable 时,它​​只是分配 a4j:commandButton 的默认 styleClass,但是当您单击设置为默认 css 样式的所有按钮时。没有提到 a4j:commmandButton 的 styleClass 属性。

例如以此为例。

<a4j:commandButton value="Confirm" styleClass="buttonstyle prisefont15" style="width:100px; height:30px; cursor:pointer;" action="#{DraftZoneBean.confirmAction}" immediate="true" reRender="draftzoneForm">
</a4j:commandButton>

关于java - RichFaces ajax commandButton 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1900706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com