Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ColorPickerItem's value doesn't change to picked color.

    I have a pretty normal use of ColorPickerItem:
    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);
    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.
    Last edited by test; 14 Jun 2010, 00:39.
Working...
X