Package org.projectforge.web.common

Examples of org.projectforge.web.common.ColorPickerPanel


        }
      });
      container.add(checkBoxPanel);
      WicketUtils.addTooltip(checkBoxPanel.getCheckBox(), getString("plugins.teamcal.filterDialog.calendarIsVisible.tooltip"));
      container.add(new Label("name", calendar.getTitle()));
      final ColorPickerPanel picker = new ColorPickerPanel("colorPicker", activeTemplateEntry.getColorCode(calendar.getId())) {
        @Override
        protected void onColorUpdate(final String selectedColor)
        {
          final TemplateCalendarProperties props = activeTemplateEntry.getCalendarProperties(calendar.getId());
          if (props != null) {
View Full Code Here

TOP

Related Classes of org.projectforge.web.common.ColorPickerPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.