I have a pretty normal use of ColorPickerItem:
Except, when I want to show only the value icon, it doesn't save to changed color.
EDIT: The textbox doesn't register the Change event, if I try to type something in. It does register MOST of the KeyDown events, but if I hold the key down for 5secs+, some of the events will not register.
Code:
final String defaultColor = "#FFFF00";
colorP = new ColorPickerItem();
colorP.setRequired(true);
colorP.setName("color");
colorP.setTitle("Color");
colorP.setValue(defaultColor);
[b]colorP.setShowValueIconOnly(true);[/b]
formDF.setFields(... colorP);
EDIT: The textbox doesn't register the Change event, if I try to type something in. It does register MOST of the KeyDown events, but if I hold the key down for 5secs+, some of the events will not register.