4
我正在改進/拋光我的primefaces ConfirmDialog,但我似乎不能在它上面放一些漂亮的圖像或改進它的一些外觀。另外我似乎找不到一些關於如何使用它的屬性的文檔,我已經下載了primefaces用戶手冊,但它似乎缺少一些東西。 這是我的代碼。JSF Primefaces ConfirmDialog
<p:confirmDialog header="Confirm" severity="alert" closeOnEscape="true" widgetVar="confirmationDialog" showEffect="fold" >
<f:facet name="message">
<h:outputText value="Are you sure all details
are correct and proceed in creating the Account?" />
</f:facet>
<p:commandButton value="Yes" actionListener="#{marketingPersonController.create}"
oncomplete="confirmationDialog.hide()" icon="ui-icon-check"
update="propertyPanel accountPanel marketingPersonPanel">
<f:ajax rendered="propertyPanel accountPanel marketingPersonPanel"/>
</p:commandButton>
<p:commandButton value="No" onclick="confirmationDialog.hide()" type="button"
icon="ui-icon-close"/>
</p:confirmDialog>
下面是截圖
我似乎無法去掉小!圖標在那裏,如果我把嚴重性沒有,它仍然顯示一個奇怪的「^」圖像。我想徹底改變圖標並以某種方式修改它的一些外觀。
此外,我試過有這個CSS。仍然沒有工作。
.ui-dialog-content p span {
background-image: url('path to image here')
no-repeat !important;
}
我做錯了什麼?如果你有一個完整的primefaces文檔,這也會有所幫助。由於
我嘗試的第一個CSS的解決方案,它的工作。謝謝!還有,我可以修改標題,也許可以在其中添加一些顏色 – steven0529