Your search did not match any results.
Button

Icons

To add an icon to a Button, set the icon property. This demo shows how you can use this property:

  • Built-in icons
    DevExtreme ships with its own icon library. Pick any icon and assign its name to the icon property.

  • Image file
    Set the icon value to the image file path or URI.

  • 3rd-party icon fonts
    You can import a 3rd-party font library (this example uses Font Awesome). In such cases, set the icon property to a name that identifies the required glyph. Look up names in the imported library's documentation.

  • Buttons with icons and no caption text
    Define the icon, but do not define the text property. You can use the hint property to annotate the button.

Refer to the Icons help topic for additional information.

Backend API
Copy to CodePen
Apply
Reset
const DemoApp = angular.module('DemoApp', ['dx']); DemoApp.controller('DemoController', ($scope) => { $scope.doneButton = { icon: 'check', type: 'success', text: 'Done', onClick() { DevExpress.ui.notify('The Done button was clicked'); }, }; $scope.weatherButton = { icon: '../../../../images/icons/weather.png', text: 'Weather', onClick() { DevExpress.ui.notify('The Weather button was clicked'); }, }; $scope.sendButton = { icon: 'fa fa-envelope-o', text: 'Send', onClick() { DevExpress.ui.notify('The Send button was clicked'); }, }; $scope.plusButton = { icon: 'plus', onClick() { DevExpress.ui.notify('The button was clicked'); }, }; $scope.backButton = { icon: 'back', onClick() { DevExpress.ui.notify('The button was clicked'); }, }; $scope.doneDisabledButton = { icon: 'check', type: 'success', text: 'Done', disabled: true, }; $scope.weatherDisabledButton = { icon: '../../../../images/icons/weather.png', text: 'Weather', disabled: true, }; $scope.sendDisabledButton = { icon: 'fa fa-envelope-o', text: 'Send', disabled: true, }; $scope.plusDisabledButton = { icon: 'plus', disabled: true, }; $scope.backDisabledButton = { icon: 'back', disabled: true, }; });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.2.6/css/dx.light.css" /> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> <script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script> <script src="https://cdn3.devexpress.com/jslib/22.2.6/js/dx.all.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container" ng-app="DemoApp" ng-controller="DemoController"> <div class="dx-fieldset"> <div class="fields-container"> <div class="dx-field"> <div class="dx-field-label">Built-in icon</div> <div class="dx-field-value"> <div dx-button="doneButton"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">Image icon</div> <div class="dx-field-value"> <div dx-button="weatherButton"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">External icon</div> <div class="dx-field-value"> <div dx-button="sendButton" class="send"></div> </div> </div> <div class="dx-field"> <div class="dx-field-label">Icon only</div> <div class="dx-field-value"> <div dx-button="plusButton"></div> <div dx-button="backButton" id="icon-back"></div> </div> </div> </div> </div> <div class="dx-fieldset"> <div class="dx-fieldset-header">DISABLED</div> <div class="fields-container"> <div class="dx-field"> <div class="dx-field-value"> <div dx-button="doneDisabledButton"></div> </div> </div> <div class="dx-field"> <div class="dx-field-value"> <div dx-button="weatherDisabledButton"></div> </div> </div> <div class="dx-field"> <div class="dx-field-value"> <div dx-button="sendDisabledButton" class="send"></div> </div> </div> <div class="dx-field"> <div class="dx-field-value"> <div dx-button="plusDisabledButton"></div> <div dx-button="backDisabledButton" id="icon-disabled-back"></div> </div> </div> </div> </div> </div> </body> </html>
#icon-back, #icon-disabled-back { margin-left: 4px; } .dx-viewport:not(.dx-theme-ios7) .dx-fieldset { width: 520px; margin: 30px auto; } .dx-viewport:not(.dx-theme-ios7) .dx-fieldset:first-child { margin-top: 120px; } .dx-viewport:not(.dx-theme-ios7) .dx-fieldset-header { font-size: 16px; } .dx-viewport:not(.dx-theme-ios7) .dx-field { display: inline-block; margin-right: 20px; } .dx-viewport:not(.dx-theme-ios7) .dx-field-value:not(.dx-widget) > .dx-button { float: none; } .dx-viewport:not(.dx-theme-ios7) .dx-field-value:not(.dx-switch):not(.dx-checkbox):not(.dx-button), .dx-viewport:not(.dx-theme-ios7) .dx-field-label { float: none; width: 100%; } .dx-viewport:not(.dx-theme-ios7) .dx-field-label { padding-left: 0; } .send .dx-button-content .dx-icon { font-size: 18px; } .fields-container { display: flex; align-items: baseline; } .dx-field-value { display: flex; }