Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/api/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jsf rich:popupPanel从弹出窗口中删除边框_Jsf_Richfaces - Fatal编程技术网

Jsf rich:popupPanel从弹出窗口中删除边框

Jsf rich:popupPanel从弹出窗口中删除边框,jsf,richfaces,Jsf,Richfaces,在我的JSF页面中有以下popupanel <rich:popupPanel id="popup" modal="true" autosized="true" resizeable="false" domElementAttachment="form"> <f:facet name="header"> <h:outputText value="Process Teller Transac

在我的JSF页面中有以下popupanel

<rich:popupPanel id="popup" modal="true" autosized="true"
            resizeable="false" domElementAttachment="form">
            <f:facet name="header">
                <h:outputText value="Process Teller Transaction" />
            </f:facet>
            <f:facet name="controls">
                <h:outputLink value="#"
                    onclick="#{rich:component('popup')}.hide(); return false;">
                x
             </h:outputLink>
            </f:facet>

            <h:panelGroup id="container" layout="block">
                <div id="container">

                    <!--Popup Content -->



                </div>
            </h:panelGroup>
        </rich:popupPanel>

x
现在,如果我删除标题方面,从弹出窗口标题消失。我想要的是有一个自定义的标题面板,它更适合我的应用程序。我怎样才能做到这一点。其次,弹出窗口应该是拖动的。我有没有办法做到这一点


亲切问候,

如果您删除标题刻面,它肯定会从面板中消失。你到底想对标题做什么?你使用的是什么版本的richfaces?我使用的是RichFaces4。删除标题方面,标题确实会消失,但弹出窗口不再可拖动。如果您选中richfaces demo,则它是可拖动的,可能是因为您犯了一些错误。先试试这个