This page is mainly used for me to add notes on things I encounter while working with EcmaScript 6 in Chrome (48) Classes: When working with EcmaScript 6 you can use classes. Classes are defined like so: class doSomething{ constructor(param){ this.param = param; } someMethod(){ console.log(‘do something’); } } Really straight forward Inheritance Inheritance can […]
Tag Archives: javascript
AngularJS : 1 Month later
Exactly one month go I posted a little message stating that I’m going to venture into the world of angularJS. This blogpost is for myself as a post-it note to keep the most important parts easy to find: the framework is awsome the framework is awsome the framework is awsome the framework is awsome $scope […]
AngularJS a new world opens
In my spare time I’m currently looking into AngularJS. Before I started working on it I was skeptical. The main reason for it is that it’s JavaScript framework and I’m not particularly fan of this language at all. Error handling is mess and the fact that it’s weakly typed isn’t great either. So why start […]
Enable autogrow feature of CKEditor
In a xPage project the customer asked us if the following would be possible: ” When the content of the richtext editor exceeds the height of the richtext editor we want to have it expanded” . And this is ofcourse possible! The richtexteditor is based on the CKEDITOR plugin ( since 8.5.2 ). There is […]