Show euro sign in kendo numeric text box control with AngularJS.

0 Comments

Here’s a plunker demonstrating a kendo numeric text box with euro sign in it, bound to AngularJS. http://plnkr.co/edit/z2jpoZ3WQRmHxwnhIF4G?p=preview     <input kendo-numeric-text-box k-min="0" k-format="'c0'" k-ng-model="totalCost" type="text" />   Main pitfall is the single quotes inside

How to sort items in a list with ng-repeat

0 Comments

Just a nice example on how to sort items in a list with ng-repeat: http://plnkr.co/edit/qa6LdhDdggApWPmOrwGD?p=preview <!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,

Show hierarchy in combobox items, with Kendo and AngularJS.

0 Comments

Here is a plunkr showing a combobox with hierarchy: http://plnkr.co/edit/PaiRPD6dZNq0JaT2Tkdg?p=preview     <!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.

Using ValidateAntiForgeryToken with AngularJS and MVC

0 Comments

I was getting a HTTP 500 error, when posting data from AngularJS to a MVC controller, which had the attribute ValidateAntiForgeryToken applied to it. This attribute expects a form to be posted to the MVC

Using Kendo mobile switch with AngularJS and ng-model

0 Comments

  Here’s a plunkr demonstrating, binding a kendo mobile switch http://plnkr.co/edit/KlJ4JW?p=preview     <!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,

Using AngularJS Batarang to debug AngularJS apps.

0 Comments

AngularJS Batarang is a Google Chrome plugin, that helps you identify problems in AngularJS apps.   For example in my last app, a Kendo UI chart was not showing correctly, so I opened the Google

Microsoft Visual Studio 2013 Update 4 RC

0 Comments

Microsoft Visual Studio 2013 Update 4 RC can be downloaded at: http://www.microsoft.com/en-us/download/confirmation.aspx?id=44545   It contains many new features for an update: http://blogs.msdn.com/b/webdev/archive/2014/10/16/announcing-new-web-features-in-visual-studio-2013-update-4-rc.aspx   The thing I like the most:   Support for custom elements, polymer-elements