Locale

Change the locale of the datepicker, schedule and client side validation messages.

Language
English
English
English
French
German
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Bangla
Bosnian
Czech
Greek
Estonian
Persian
Finnish
Danish
Hindi
Indonesian
Icelandic
Croatian
Japanese
Hungarian
Hebrew
Georgian
Central Kurdish
Khmer
Kyrgyz
Kazakh
Lithuanian
Latvian
Malay
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Serbian
Swedish
Thai
Turkish
Ukrainian
Uzbek
Vietnamese
Chinese
Chinese

Input Style

Themes

PrimeUIX
Aura Light Emerald Aura Light Emerald
Aura Dark Emerald Aura Dark Emerald
PrimeOne
Saga Blue Saga Blue
Vela Blue Vela Blue
Arya Blue Arya Blue
Bootstrap
Bootstrap Blue Light Bootstrap Blue Light
Bootstrap Purple Light Bootstrap Purple Light
Bootstrap Blue Dark Bootstrap Blue Dark
Bootstrap Purple Dark Bootstrap Purple Dark
Material Design
Material Indigo Light Material Indigo Light
Material Deep Purple Light Material Deep Purple Light
Material Indigo Dark Material Indigo Dark
Material Deep Purple Dark Material Deep Purple Dark
Material Design Compact
Material Compact Indigo Light Material Compact Indigo Light
Material Compact Deep Purple Light Material Compact Deep Purple Light
Material Compact Indigo Dark Material Compact Indigo Dark
Material Compact Deep Purple Dark Material Compact Deep Purple Dark
Legacy
Nova Light Nova Light
Nova Dark Nova Dark
Nova Colored Nova Colored
Luna Amber Luna Amber
Luna Blue Luna Blue
Luna Green Luna Green
Luna Pink Luna Pink

Color Picker

ColorPicker has an inline mode but it can only be used globally and popup and inline mode cannot be used on the same page.

ColorPicker Tag Documentation

ColorPicker is an input component with a color palette.

NameTypeRequiredDefaultDescription
submittedValue Object false
accesskey String false Access key to transfer focus to the input element.
label String false A localized user presentable name.
alt String false Alternate textual description of the input field.
valueChangeListener ValueChangeListener false A method binding expression referring to a method for handling a valuchangeevent.
validator Validator false A method expression referring to a method validating the input.
binding UIComponent false generated An EL expression referring to a server side UIComponent instance in a backing bean.
rendered boolean false true Boolean value to specify the rendering of the component, when set to false component will not be rendered.
format String false hex Color format. Options: 'hex', 'rgb', 'hsl', 'hsv'.
theme String false default Color picker theme.
swatches String false Comma-separated list of color swatches to display.
autocomplete String false Controls browser autocomplete behavior. Possible values are 'on', 'off', and 'new-password'.
converterMessage String false Custom message to display when conversion fails.
requiredMessage String false Custom message to display when the required validation fails.
validatorMessage String false Custom message to display when validation fails.
maxlength int false Integer.MIN_VALUE Defines the maximum number of characters allowed in the input.
role String false Defines the role of the element for accessibility purposes.
dir String false ltr Direction indication for text that does not inherit directionality.
mode String false popup Display mode. Options: 'popup', 'inline'.
converter Converter false EL expression resolves to a converter instance or literal converter ID defining a component converter.
onmousedown String false Fires when a mouse button is pressed down on an element.
onmouseup String false Fires when a mouse button is released over an element.
onclick String false Fires when a mouse click on the element.
ondblclick String false Fires when a mouse double-click on the element.
onfocus String false Fires when an element gets focus.
onblur String false Fires when an element loses focus.
onkeydown String false Fires when a user is pressing a key.
onkeypress String false Fires when a user presses a key.
onkeyup String false Fires when a user releases a key.
onmousemove String false Fires when the mouse pointer is moving while it is over an element.
onmouseover String false Fires when the mouse pointer moves onto an element.
onmouseout String false Fires when the mouse pointer moves out of an element.
onchange String false Fires when the value of an element has been changed.
ariaDescribedBy String false Identifies the element(s) that describe the object, enhancing accessibility.
valid boolean false true Indicates whether the input's value is valid.
localValueSet boolean false false Indicates whether the local value of the component has been set.
type String false text Input field type.
locale Object false Locale for the color picker.
required boolean false false Marks component as required.
widgetVar String false generated ('widget_' + componentClientId) Name of the client side widget.
size int false Integer.MIN_VALUE Number of characters used to determine the width of the input element.
ondragend String false Script to execute at the end of a drag operation.
ondragstart String false Script to execute at the start of a drag operation.
ondragenter String false Script to execute when a dragged element enters a valid drop target.
ondrop String false Script to execute when a dragged element is dropped.
ondragover String false Script to execute when a dragged element is over a valid drop target.
ondragleave String false Script to execute when a dragged element leaves a valid drop target.
ondrag String false Script to execute when an element is dragged.
onsearch String false Script to execute when a search is performed.
oncopy String false Script to execute when content is copied from the element.
oncut String false Script to execute when content is cut from the element.
onpaste String false Script to execute when content is pasted into the element.
onselect String false Script to execute when text is selected.
oncontextmenu String false Script to execute when the context menu is triggered.
oninvalid String false Script to execute when the element's value is invalid.
onscroll String false Script to execute when the element is scrolled.
oninput String false Script to execute when the element receives user input.
onreset String false Script to execute when the form is reset.
onwheel String false Script to execute when the mouse wheel is used.
style String false Specifies an inline CSS style for an element.
placeholder String false Specifies a short hint describing the expected value of the input.
title String false Specifies extra information about an element (displayed as a tooltip).
styleClass String false Specifies one or more CSS class names for an element.
disabled boolean false false Specifies that an element should be disabled.
readonly boolean false false Specifies that an input field is read-only.
lang String false Specifies the language of the element's content.
tabindex String false Specifies the tab order of an element.
inputmode String false Specifies the type of data expected in the input, aiding virtual keyboards.
themeMode String false auto Theme mode. Options: 'auto', 'light', 'dark'.
id String false generated Unique identifier of the component in a namingContainer.
value Object false Value of the component.
formatToggle boolean false false When enabled, allows toggling between color formats.
focusInput boolean false true When enabled, focuses the input field.
forceAlpha boolean false false When enabled, forces alpha channel to be always visible.
alpha boolean false true When enabled, includes alpha channel (transparency).
selectInput boolean false false When enabled, selects the input text on focus.
clearButton boolean false false When enabled, shows clear button.
closeButton boolean false false When enabled, shows close button.
swatchesOnly boolean false false When enabled, shows only color swatches.
immediate boolean false false When set true, process validations logic is executed at apply request values phase for this component.
Loading...
Tag DocumentationNew DocumentationNew Documentation JSDoc Popup Inline
Inline

Usage


<h:form>
    <div class="card">
        <p:growl>
            <p:autoUpdate />
        </p:growl>

        <h5>Inline</h5>

        <p:colorPicker id="inline" mode="inline" value="#{colorView.ajax}"
            formatToggle="true" theme="large">
             <p:ajax event="change" listener="#{colorView.onColorChange}" />
        </p:colorPicker>
        
        <p:commandButton value="Save" update="@form" action="#{colorView.save}" icon="pi pi-check" styleClass="mt-4"/>
    </div>
</h:form>