Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.Web
- Classes
- AJAXPostedFile Class
- AJAXPostedFileList Class
- AJAXUploader Class
- AJAXUploaderProgressDialog Class
- ASPXToPDF Class
- BaseMenuItem Class
- BaseMenuItemGroup Class
- BaseNavigator Class
- BorderImages Class
- ButtonColumn Class
- Calendar Class
- CalendarDay Class
- Callback Class
- CallbackEventArgs Class
- CallbackPanel Class
- CallbackTrigger Class
- CallbackTriggerCollection Class
- Captcha Class
- CheckBoxColumn Class
- ClientTemplate Class
- ColorPicker Class
- ColorPicker Class
- ColorPicker Members
- ColorPicker Constructor
- Properties
- Properties
- AutoPostBack Property
- BLabelText Property
- BrtLabelText Property
- ButtonStyle Property
- CLabelText Property
- ClientSideOnAdjust Property
- ClientSideOnChange Property
- ColorFieldMarkerImageUrl Property
- ColorModel Property
- GLabelText Property
- HueLabelText Property
- KLabelText Property
- MLabelText Property
- OKButtonText Property
- PopupCollapseEffect Property
- PopupDownImageUrl Property
- PopupExpandDirection Property
- PopupExpandEffect Property
- PopupHoverImageUrl Property
- PopupImageUrl Property
- PopupLayoutTemplate Property
- PopupOffsetX Property
- PopupOffsetY Property
- PopupShadowColor Property
- PopupShadowDepth Property
- PopupStyle Property
- RLabelText Property
- SatLabelText Property
- SpectrumSliderArrowImageUrl Property
- TargetControl Property
- TextBoxStyle Property
- TitleText Property
- UpdateTargetColor Property
- UpdateTargetText Property
- Value Property
- WebColorLabelText Property
- WebColorOnly Property
- WebSafeLabelText Property
- YLabelText Property
- Events
- ComboBox Class
- Consts Class
- ContextMenu Class
- Control Class
- ControlFrame Class
- CustomColumn Class
- CustomItem Class
- DataBinding Class
- DataBindingCollection Class
- DataBoundControl Class
- DateCollection Class
- DatePicker Class
- DateTimeColumn Class
- DayRenderEventArgs Class
- DefaultClientTemplateAttribute Class
- DeleteCommandColumn Class
- DesignOptions Class
- Dialog Class
- Downloader Class
- DownloadEventArgs Class
- DynamicDownloadContent Class
- EditableLabel Class
- EditCommandColumn Class
- Editor Class
- EditorDialogContent Class
- EditorDialogContentCollection Class
- EditorDialogTemplate Class
- EditorDialogTemplateCollection Class
- EditorStyle Class
- EditorStyleCollection Class
- EditorTabButtonStyles Class
- Effect Class
- ElementPaddings Class
- ElementStyle Class
- Emoticon Class
- FileExplorer Class
- FileExplorerEventArgs Class
- FileExplorerHolder Class
- Floater Class
- Flyout Class
- FontInfo Class
- Grid Class
- GridCell Class
- GridCellCollection Class
- GridColumn Class
- GridColumnCollection Class
- GridColumnEventArgs Class
- GridCommandEventArgs Class
- GridItem Class
- GridItemCollection Class
- GridItemEventArgs Class
- GridItemStyleSet Class
- GridItemStyleSetCollection Class
- ImageButtonInfo Class
- ImageInfo Class
- ImageZoom Class
- InlineStyle Class
- ListBox Class
- ListBoxItem Class
- ListBoxItemCollection Class
- ListBoxItemContainer Class
- ListItemEventArgs Class
- LookItemCollection Class
- MaskedEdit Class
- MaskedEditColumn Class
- MaskedEditSegment Class
- MaskedEditSegmentCollection Class
- MaskedEditValidator Class
- Menu Class
- MenuGroup Class
- MenuItem Class
- MenuItemCollection Class
- MenuItemImages Class
- MenuLookItemCollection Class
- MsgBox Class
- MsgBoxButton Class
- MultiPage Class
- MultiPageEventArgs Class
- NavigationItem Class
- NavigationItemCollection Class
- NavigationItemEventArgs Class
- NavigationItemGroup Class
- NavigationItemImages Class
- NavigationItemText Class
- PageContextMenu Class
- PageView Class
- PageViewCollection Class
- PathMapping Class
- PathMappingCollection Class
- PopupCalendar Class
- ProgressBar Class
- ProgressTaskEventArgs Class
- RangeSlider Class
- Rating Class
- RowNumberColumn Class
- Runtime Class
- ScriptEvent Class
- ScriptManager Class
- Slide Class
- SlideItem Class
- SlideItemCollection Class
- SlideItemEventArgs Class
- SlideMenu Class
- Slider Class
- SliderBase Class
- SliderLabel Class
- SliderLabelCollection Class
- SpecialLookIDs Class
- SpellChecker Class
- SpellCheckerDialog Class
- SpellCheckerEventArgs Class
- Splitter Class
- SplitterPane Class
- StaticColumn Class
- TabItem Class
- TabItemCollection Class
- TabItemGroup Class
- TabLookItemCollection Class
- TabStrip Class
- TemplatedPopup Class
- TextBoxColumn Class
- ToolBar Class
- ToolBarEventArgs Class
- ToolBarItem Class
- ToolBarItemCollection Class
- ToolTip Class
- TreeLookNodeCollection Class
- TreeNode Class
- TreeNodeCheckStateChangedEventArgs Class
- TreeNodeCollection Class
- TreeNodeGroup Class
- TreeNodeMovedEventArgs Class
- TreeNodeRenameEventArgs Class
- TreeView Class
- TreeViewCheckBoxImages Class
- TreeViewLineImages Class
- TreeViewMargin Class
- WebControl Class
- WebControlBase Class
- Structures
- Enumerations
- Delegates
- EO.WebBrowser
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
PopupLayoutTemplate Property |
Gets or sets the template that is used to define the color picker popup layout.
Use this property to customize the color picker's popup window.
The LayoutTemplate can contain any valid HTML or ASP.NET server control as well controls with pre-defined IDs. At runtime, the color picker recongizes these pre-defined IDs and associates specific functionalities to the control. For example, a Button control with ID "OKButton" will be automatically associated with the functionality of closing the popup window and accepting the current value.
The following table lists all supported IDs:ID | Remark |
---|---|
ColorField | Represents the color field. Must be of PlaceHolder type. |
SpectrumSlider | Represents the spectrum slider. Must be of PlaceHolder type. |
OriginalColor |
Represents the original color block. Must be of PlaceHolder type. The original color block is a rectangle area where the color picker displays the original color prior to any changes made by the user. It is usually placed close to the adjusted color block, which displays the current selected color. Note: The element that encloses this control, not this control itself will be used for the original color block. As such it is necessary to set fixed size on the enclosed element to define the size of the original color block. For example: HTML <div style="height:30px;width:30px;"> <asp:PlaceHolder runat="server" ID="OriginalColor" /> </div> |
AdjustedColor |
Represents the adjusted color block. Must be of PlaceHolder type. The adjusted color block is a rectangle area where the color picker displays the current selected color. It is usually placed close to the original color block, which displays the color prior to any user changes. Note: The element that encloses this control, not this control itself will be used for the adjusted color block. As such it is necessary to set fixed size on the enclosed element to define the size of the original color block. For example: HTML <div style="height:30px;width:30px;"> <asp:PlaceHolder runat="server" ID="AdjustedColor" /> </div> |
HueTextBox | Must be a TextBox control. User can enter hue value (0 - 360) in this text box. |
SatTextBox | Must be a TextBox control. User can enter saturation value (0 - 100) in this text box. |
BrtTextBox | Must be a TextBox control. User can enter brightness value (0 - 100) in this text box. |
RTextBox | Must be a TextBox control. User can enter red component value (0 - 255) in this text box. |
GTextBox | Must be a TextBox control. User can enter green component value (0 - 255) in this text box. |
BTextBox | Must be a TextBox control. User can enter blue component value (0 - 255) in this text box. |
CTextBox | Must be a TextBox control. User can enter cyan component value (0 - 100) in this text box. |
MTextBox | Must be a TextBox control. User can enter magenta component value (0 - 100) in this text box. |
YTextBox | Must be a TextBox control. User can enter yellow component value (0 - 100) in this text box. |
KTextBox | Must be a TextBox control. User can enter black component value (0 - 100) in this text box. |
WebColorTextBox | Must be a TextBox control. User can directly enter a color in hexadecimal values. For example, #ff0000 for red. |
WebSafeCheckBox | Must be a CheckBox control. User can use this checkbox to enable/disable web-safe color mode. When in web-safe color mode, the color picker only returns colors that are web-safe. |
ColorNameLabel | Must be a Label control. This label is used to display the currently selected color's name in English. |
InvertButton | Must be a Button, LinkButton or ImageButton control. User can click this button to covert the current selected color to the inverted color. |
DesaturateButton | Must be a Button, LinkButton or ImageButton control. User can click this button to desaturate the current selected color. Desaturate set the saturation to 0. |
OKButton | Must be a Button, LinkButton or ImageButton control. User can use this button to close the color picker popup. |