Your search did not match any results.

Color Box

The ColorBox allows users to enter a color or select it in the drop-down editor. When you create a ColorBox, specify its value property to set the initial color. Users can change the value after they pick a shade, or after they click the OK button. To specify the mode, use the applyValueMode property.

You can hide the editor's drop-down button to allow users to only type in a color code. To do this, disable the showDropDownButton property. Users can also edit the transparency of the selected shade if the editAlphaChannel property is set to true.

Configure the ColorBox

Use the following properties to specify the component's interactivity:

  • readOnly
    Specifies whether the ColorBox is read-only.

  • disabled
    Specifies whether the ColorBox responds to user interaction.

You can specify the following properties to add custom buttons into the input field, or configure the drop-down editor's buttons:

  • buttons
    Allows you to add custom buttons to the input text field.

  • showClearButton
    Specifies whether to display the Clear button in the ColorBox.

  • applyButtonText
    Specifies the text for the button that applies changes and closes the drop-down editor.

  • cancelButtonText
    Specifies the text for the button that cancels changes and closes the drop-down editor.

Handle Value Change

Implement the onValueChanged function to handle the value change when users select a color in the drop-down editor. To handle the input value change, use the onInput function.

Backend API
<div class="form"> <div class="dx-fieldset"> <div class="dx-field"> <div class="dx-field-label">Default mode</div> <div class="dx-field-value"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .InputAttr("aria-label", "Checked") ) </div> </div> <div class="dx-field"> <div class="dx-field-label">With alpha channel editing</div> <div class="dx-field-value"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .EditAlphaChannel(true) .InputAttr("aria-label", "With alpha channel editing") ) </div> </div> <div class="dx-field"> <div class="dx-field-label">Custom button captions</div> <div class="dx-field-value"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .ApplyButtonText("Apply") .CancelButtonText("Decline") .InputAttr("aria-label", "Custom button captions") ) </div> </div> <div class="dx-field"> <div class="dx-field-label">Read only</div> <div class="dx-field-value"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .ReadOnly(true) .InputAttr("aria-label", "Read only") ) </div> </div> <div class="dx-field"> <div class="dx-field-label">Disabled</div> <div class="dx-field-value"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .Disabled(true) .InputAttr("aria-label", "Disabled") ) </div> </div> </div> <div class="dx-fieldset"> <div class="dx-fieldset-header">Event Handling</div> <div class="hero-block"> <div class="color-block"> <div class="superhero"></div> </div> <div class="hero-color-box"> @(Html.DevExtreme().ColorBox() .Value("#f05b41") .ApplyValueMode(EditorApplyValueMode.Instantly) .InputAttr("aria-label", "Event Handling") .OnValueChanged("colorBox_valueChanged") .OnInput("colorBox_inputChanged") ) </div> </div> </div> </div> <script> function colorBox_valueChanged(e) { $(".color-block").css("background-color", e.component.option("value")); } function colorBox_inputChanged(e) { $(".color-block").css("background-color", e.jQueryEvent.target.value); } </script>
using System.Web.Mvc; namespace DevExtreme.MVC.Demos.Controllers { public class ColorBoxController : Controller { public ActionResult Overview() { return View(); } } }
.form { min-height: 690px; } .form .dx-field-value { text-align: right; } .dx-fieldset-header { padding: 10px 0; } .color-block { width: 360px; height: 254px; background-color: #f05b41; position: relative; } .hero-color-box{ position: absolute; right: 0; left: 400px; top: 110px; } .color-block .superhero{ position: absolute; height: 100%; width: 100%; } .hero-block { position: relative; } .superhero { background-image: url(../../images/colorbox/hero_white.png); } .dx-color-scheme-dark .superhero { background-image: url(../../images/colorbox/hero_black.png); } .dx-color-scheme-darkmoon .superhero { background-image: url(../../images/colorbox/hero_darkmoon.png); } .dx-color-scheme-darkviolet .superhero { background-image: url(../../images/colorbox/hero_darkviolet.png); } .dx-color-scheme-greenmist .superhero { background-image: url(../../images/colorbox/hero_greenmist.png); } .dx-color-scheme-contrast .superhero { background-image: url(../../images/colorbox/hero_contrast.png); } .dx-color-scheme-blue-dark .superhero, .dx-color-scheme-orange-dark .superhero, .dx-color-scheme-teal-dark .superhero, .dx-color-scheme-lime-dark .superhero, .dx-color-scheme-purple-dark .superhero { background-image: url(../../images/colorbox/hero_material_dark.png); }