Ext.Net.CalendarView.HighlightEvent C# (CSharp) Method

HighlightEvent() public method

Visually highlights an event using Ext.Fx.highlight config options. If highlightEventActions is false this method will have no effect.
public HighlightEvent ( Ext.Net.Element el, string color, HighlightConfig o ) : void
el Ext.Net.Element The element(s) to highlight
color string (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
o HighlightConfig (optional) Object literal with any of the Ext.Fx config options. See Ext.Fx.highlight for usage examples.
return void
        public void HighlightEvent(Element el, string color, HighlightConfig o)
        {
            this.Call("highlightEvent", new JRawValue(el.Descriptor), color, new JRawValue(new ClientConfig().Serialize(o)));
        }