• Getting Started
  • Components
    • Barcodes
    • Buttons
    • Chartsupdated
    • Conversational UIupdated
    • Data Query
    • Date Inputsupdated
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Filter
    • Gantt
    • Gauges
    • Gridupdated
    • Icons
    • Indicators
    • Inputsupdated
    • Labels
    • Layout
    • ListBox
    • ListView
    • Map
    • Menus
    • Navigation
    • Notification
    • Pager
    • PDF Export
    • PDFViewer
    • PivotGridupdated
    • Popup
    • ProgressBars
    • Ripple
    • Schedulerupdated
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • ToolBar
    • Tooltips
    • TreeList
    • TreeView
    • Typography
    • Uploads
    • Utilities
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Sample Applications
  • FAQ
  • Troubleshooting
  • Updates
  • Changelogs
New to Kendo UI for Angular? Start a free 30-day trial

ActiveColorClickEvent

Fires each time the left side of the ColorPicker wrapper is clicked. The event is triggered regardless of whether a ColorPicker icon is set or not.

Provides information about the current active color and gives the option to prevent the opening of the popup.

@Component({
  selector: 'my-app',
  template: `
      <kendo-colorpicker
          [icon]="'edit-tools'"
          [value]="'#900'"
          (activeColorClick)="handleActiveColorClick($event)"
      >
      </kendo-colorpicker>
  `
})
class AppComponent {
    public handleActiveColorClick(event: ActiveColorClickEvent): void {
        event.preventOpen();

        console.log('Open prevented:', event.isOpenPrevented());
        console.log('Current color:', event.color);
    }
 }
NameTypeDefaultDescription

color?

string

Represents the current value of the ColorPicker.

Methods

isOpenPrevented

Returns true if the popup opening is prevented by any of its subscribers.

Returns

boolean

  • Returns true if the open action was prevented. Otherwise, returns false.

preventOpen

Prevents the opening of the popup.

In this article

Not finding the help you need?