const DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', ($scope) => {
$scope.emailValue = 'smith@corp.com';
$scope.textBox = {
simple: {
value: 'John Smith',
},
withPlaceholder: {
placeholder: 'Enter full name here...',
},
withClearButton: {
value: 'John Smith',
showClearButton: true,
},
passwordMode: {
mode: 'password',
placeholder: 'Enter password',
showClearButton: true,
value: 'f5lzKs0T',
},
maskUsage: {
mask: '+1 (X00) 000-0000',
maskRules: { X: /[02-9]/ },
},
disabled: {
value: 'John Smith',
disabled: true,
},
fullName: {
value: 'Smith',
showClearButton: true,
placeholder: 'Enter full name',
valueChangeEvent: 'keyup',
onValueChanged(data) {
$scope.emailValue = `${data.value.replace(/\s/g, '').toLowerCase()}@corp.com`;
},
},
email: {
readOnly: true,
hoverStateEnabled: false,
bindingOptions: {
value: 'emailValue',
},
},
};
});
<!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" />
<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>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="dx-viewport">
<div class="demo-container" ng-app="DemoApp" ng-controller="DemoController">
<div class="form">
<div class="dx-fieldset">
<div class="dx-field">
<div class="dx-field-label">Default mode</div>
<div class="dx-field-value">
<div dx-text-box="textBox.simple"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">With placeholder</div>
<div class="dx-field-value">
<div dx-text-box="textBox.withPlaceholder"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">With clear button</div>
<div class="dx-field-value">
<div dx-text-box="textBox.withClearButton"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Password mode</div>
<div class="dx-field-value">
<div dx-text-box="textBox.passwordMode"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Text mask</div>
<div class="dx-field-value">
<div dx-text-box="textBox.maskUsage"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Disabled</div>
<div class="dx-field-value">
<div dx-text-box="textBox.disabled"></div>
</div>
</div>
</div>
<div class="dx-fieldset">
<div class="dx-fieldset-header">Events and API</div>
<div class="dx-field">
<div class="dx-field-label">Full Name</div>
<div class="dx-field-value">
<div dx-text-box="textBox.fullName"></div>
</div>
</div>
<div class="dx-field">
<div class="dx-field-label">Email (read only)</div>
<div class="dx-field-value">
<div dx-text-box="textBox.email"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>