Unplanned
Last Updated: 25 Feb 2020 13:11 by ADMIN
Yosel
Created on: 13 Nov 2017 03:24
Category: ColorPicker
Type: Feature Request
2
Kendo ColorPicker and ColorPalette to implemented a refresh method.
I was working with Kendo ColorPicker and ColorPalette and I created a widget for serenity. Everything works perfect, except at the constructor time, I do not know the color. This is how is working now...

        // [KendoColorPickerEditor(Columns=2, Palette = "['#000', '#333', '#666', '#999', '#ccc', '#fff']",Buttons =true,Preview =true)]
        //Palette : "basic" | "websafe" | "['#000', '#333', '#666'] or leave blank"
        [KendoColorPickerEditor( Buttons = true, Preview = true)]
        public String Color
        {
            get { return Fields.Color[this]; }
            set { Fields.Color[this] = value; }
        }

A refresh method is needed to reload the properties changed after constructor...like the "Color" property
1 comment
Peter
Posted on: 01 Nov 2018 21:23
I have two color pickers, one for an outer line color and one for inner line color, i Iwould like to be able to switch between them to see effect but while I can switch no problem and see this reflected on the line, the actual color pickers stay the same color as I am unable to refresh the component.