arya-blue
luna-amber
luna-blue
luna-green
luna-pink
nova-dark
nova-light
saga-blue
vela-blue
CodeMirror
CodeMirror is fully updateable via AJAX as you can see with the select one menu options below.
Source

<p:growl id="growl" showDetail="true" showSummary="true">
        <p:autoUpdate />
    </p:growl>

<pe:codeMirror id="codeMirror" mode="#{codeMirrorController.mode}" theme="#{codeMirrorController.theme}"
    value="#{codeMirrorController.content}" keyMap="#{codeMirrorController.keymap}" lineNumbers="true"
    matchBrackets="true" />

<h:panelGrid columns="2" style="margin-bottom:10px" cellpadding="5">
    <p:outputLabel for="theme" value="Theme: " />
    <p:selectOneMenu id="theme" value="#{codeMirrorController.theme}">
        <f:selectItem itemLabel="Select One" itemValue="" />
        <f:selectItems value="#{codeMirrorController.themes}" />
        <p:ajax update="codeMirror" />
    </p:selectOneMenu>

    <p:outputLabel for="mode" value="Mode: " />
    <p:selectOneMenu id="mode" value="#{codeMirrorController.mode}">
        <f:selectItem itemLabel="Select One" itemValue="" />
        <f:selectItems value="#{codeMirrorController.modes}" />
        <p:ajax update="codeMirror" />
    </p:selectOneMenu>
    
    <p:outputLabel for="keymap" value="Keymap: " />
    <p:selectOneMenu id="keymap" value="#{codeMirrorController.keymap}">
        <f:selectItem itemLabel="Select One" itemValue="" />
        <f:selectItems value="#{codeMirrorController.keymaps}" />
        <p:ajax update="codeMirror" />
    </p:selectOneMenu>
    
    <p:commandButton id="btnSubmit" value="Submit" icon="pi pi-save" actionListener="#{codeMirrorController.submitContent()}" />
</h:panelGrid>
            
Components and more
Documentation pe:
Attributes (move mouse over the names to see data types)
Name Description
No attributes available for this component.
PrimeFaces Extensions Showcase - © 2011-2025,PrimeFaces: 15.0.13,PrimeFaces Extensions: 15.0.14-SNAPSHOT,JSF: Apache MyFaces JSF-2.3 Core Impl 2.3.10,Server: Apache Tomcat (TomEE)/9.0.82 (8.0.16),Build time: 2026-02-23 00:32