<!DOCTYPE html>
<html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="spike">
<head>
<!--
This page can be used as a base for spiking with jQuery, AngularJS and Kendo.
All scripts and styles are loaded from a CDN or inline.
-->
<title>Spike page</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- Use highest support for modern standards . -->
<!-- Library styles -->
<link href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.common.min.css" rel="stylesheet" />
<link href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.silver.min.css" rel="stylesheet" />
<link href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.silver.mobile.min.css" rel="stylesheet" />
<link href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.dataviz.min.css" rel="stylesheet" />
<link href="http://cdn.kendostatic.com/2014.2.1008/styles/kendo.dataviz.silver.min.css" rel="stylesheet" />
<!-- Library scripts -->
<script src="http://cdn.kendostatic.com/2014.2.1008/js/jquery.min.js"></script>
<script src="http://cdn.kendostatic.com/2014.2.1008/js/angular.min.js"></script>
<script src="http://cdn.kendostatic.com/2014.2.1008/js/kendo.all.min.js"></script>
<script src="http://cdn.kendostatic.com/2014.2.1008/js/cultures/kendo.culture.nl-NL.min.js"></script>
<!-- App styles -->
<style>
/*
A small custom reset stylesheet is used, to fix style differences between browsers.
*/
html, body {
height: 100%; /* App layout uses a 100% height layout. */
}
body, div, input, li, p, select, ul {
border: 0; /* Remove unwanted space. */
-webkit-box-sizing: border-box; /* Place the border and padding inside the box. */
-moz-box-sizing: border-box; /* Place the border and padding inside the box. */
-ms-box-sizing: border-box; /* Place the border and padding inside the box. */
-o-box-sizing: border-box; /* Place the border and padding inside the box. */
box-sizing: border-box; /* Place the border and padding inside the box. */
font-family: "Open Sans", sans-serif;
font-size: 15px;
margin: 0; /* Remove unwanted space. */
outline: 0; /* Remove unwanted space. */
padding: 0; /* Remove unwanted space. */
}
body {
padding: 20px; /* Create space between browser border and content. */
min-width: 320px; /* App will not work beneath width: 320px. */
}
</style>
<!-- App scripts -->
<script>
(function () {
"use strict";
// This is the starting point (main) for the angular app.
var app = angular.module("spike", ["kendo.directives"]);
// Set culture info to Ducth:
kendo.culture("nl-NL");
}());
(function () {
"use strict";
var app = angular.module("spike");
var controller = function ($scope, service) {
$scope.title = "Show euro sign in kendo numeric text box control with AngularJS.";
$scope.totalCost = 130000;
};
app.controller("main", ["$scope", controller]);
}());
</script>
</head>
<body>
<div ng-controller="main">
<h2>{{ title }}</h2>
<div>
<br />
<input kendo-numeric-text-box k-min="0" k-format="'c0'" k-ng-model="totalCost" type="number" />
<br />
<br />
<p>The same modal value but now as a number</p>
<br />
<input kendo-numeric-text-box k-min="0" k-format="'n0'" k-decimals="0" k-ng-model="totalCost" type="number" />
</div>
</div>
</body>
</html>
// Code goes here
/* Styles go here */