Angular CSS Classes API
This section describes the DevExtreme CSS classes you can use to define the appearance of an element.
dx-clearfix
Set this class to an element to automatically increase the height of this element if floating child elements overflow the current element box.
dx-field-label
A class used to display a field name within the dx-field element.
The dx-field-label element can hold plain text, UI widgets, knockout bindings or custom markup.
dx-field-label
and dx-field-value
classes are designed to have the label always be before the value. If you need to swap them around, override the float
CSS property of these classes in the following way..dx-field-label { float: right; } .dx-field-value { float: left; }
dx-field-value-static
A class used to display a field value containing a static text within the dx-field element.
The dx-field-value-static element can hold plain text, knockout bindings or custom markup. To display a UI widget within a field value element, use the dx-field-value CSS class.
dx-field-label
and dx-field-value-static
classes are designed to have the label always be before the value. If you need to swap them around, override the float
CSS property of these classes in the following way..dx-field-label { float: right; } .dx-field-value-static { float: left; }
dx-field-value
A class used to display a field value containing a widget within the dx-field element.
-
HTMLJavaScript
<div class="dx-field"> <div class="dx-field-label">Name</div> <div class="dx-field-value" id="nameTextBox"></div> </div>
$("#nameTextBox").dxTextBox({ value: "John" });
-
HTMLJavaScript
<div class="dx-field"> <div class="dx-field-label">Name</div> <div class="dx-field-value" dx-text-box="{ value: name }"></div> </div>
var myApp = angular.module('myApp', ['dx']); myApp.controller("demoController", function ($scope) { $scope.name = "John"; });
-
HTMLJavaScript
<div class="dx-field"> <div class="dx-field-label">Name</div> <div class="dx-field-value" data-bind="dxTextBox: { value: name }"></div> </div>
var myViewModel = { name: ko.observable("John") } ko.applyBindings(myViewModel);
To display plain text, knockout bindings or custom markup within a field value element, use the dx-field-value-static CSS class.
DevExtreme UI widgets includes WAI-ARIA markup to support screen readers. If you use a widget within a field value element, associate the widget with the field label to allow a screen reader to properly read the field. For this purpose, specify a unique ID for the field label element and assign this ID to the aria-labeledby attribute of the associated widget as demonstrated below.
jQuery
HTML<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" id="fullNameTextBox"></div> </div> </div>
AngularJS
HTML<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" dx-text-box="{ value: fullName }"></div> </div> </div>
Knockout
HTML<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" data-bind="dxTextBox: { value: fullName }"></div> </div> </div>
dx-field-label
and dx-field-value
classes are designed to have the label always be before the value. If you need to swap them around, override the float
CSS property of these classes in the following way..dx-field-label { float: right; } .dx-field-value { float: left; }
dx-field
Defines the appearance of an element displaying a field-value pair within a dx-fieldset element.
The dx-field field element may include label and value elements intended to display the field name and value respectively. Use the dx-field-label, dx-field-value and dx-field-value-static classes to create label and value elements.
<div class="dx-field"> <div class="dx-field-label">Full Name</div> <div class="dx-field-value-static">John Smith</div> </div>
DevExtreme UI widgets include WAI-ARIA markup to support screen readers. If you use a widget within a field value element, associate the widget with the field label to allow a screen reader to properly read the field. For this purpose, specify a unique ID for the field label element and assign this ID to the aria-labeledby attribute of the associated widget as demonstrated below.
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" id="fullNameTextBox"></div> </div> </div>
AngularJS
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" dx-text-box="{ value: fullName }"></div> </div> </div>
Knockout
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" data-bind="dxTextBox: { value: fullName }"></div> </div> </div>
dx-field-label
and dx-field-value
/ dx-field-value-static
classes are designed to have the label always be before the value. If you need to swap them around, override the float
CSS property of these classes in the following way..dx-field-label { float: right; } .dx-field-value { float: left; } .dx-field-value-static { float: left; }
dx-fieldset
To create a fieldset element, create an element and assign "dx-fieldset" to its class attribute.
<div class="dx-fieldset"> . . . </div>
Each fieldset item is displayed within a separate field element, which has the dx-field class. The field element may include label and value elements intended to display the field name and value respectively. Use the dx-field-label, dx-field-value and dx-field-value-static classes to create label and value elements.
<div class="dx-field"> <div class="dx-field-label">Full Name</div> <div class="dx-field-value-static">John Smith</div> </div>
The field label and value elements can hold plain text, UI widgets, knockout bindings or custom markup.
DevExtreme UI widgets include WAI-ARIA markup to support screen readers. If you use a widget within a field value element, associate the widget with the field label to allow a screen reader to properly read the field. For this purpose, specify a unique ID for the field label element and assign this ID to the aria-labeledby attribute of the associated widget as demonstrated below.
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" id="fullNameTextBox"></div> </div> </div>
AngularJS
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" dx-text-box="{ value: fullName }"></div> </div> </div>
Knockout
<div class="dx-field"> <div class="dx-field-label" id="fullnameLabel">Full Name</div> <div class="dx-field-value"> <div aria-labeledby="fullnameLabel" data-bind="dxTextBox: { value: fullName }"></div> </div> </div>
dx-icon-IconName
The name of this class must include the real name of the icon. For instance, the "myicon" icon must be defined by the "dx-icon-myicon" class.
.dx-icon-myicon { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAQAAAACj/ OVAAAARElEQVRYw+3WKQ4AIAADMPb/R4PHIDgTOr/ULUstZxPgfbAvBAgEAoFAIPAhcPebChAIHIKmDQgEAoFA4E/ g7JcCrk4DW5xoAVzaKL0AAAAASUVORK5CYII=); }
As you can see, the icon is added in the Base64 type in the code above. We recommend that you also use this type to reduce the number of requests and the amount of data transferred.
The icons that are added to the stylesheet via this class can be used for DevExtreme widgets like predefined icons from the built-in icon library.
<div class="button" data-bind="dxButton: { icon: 'myicon', text: 'Click me' }"></div>
dx-scheduler-cell-sizes-horizontal
Use this class to customize the Scheduler's table cells and the cells above them (in the day scale, all-day panel, etc.). For example, you can change the cell's width and keep all the elements aligned.
dx-scheduler-cell-sizes-vertical
Use this class to customize the Scheduler's table cells and the cells to the left of them (in the time scale). For example, you can change the cell's height and keep all the elements aligned.
If you have technical questions, please create a support ticket in the DevExpress Support Center.