I was discussing OpenAjax Hub which is an implementation of the publisher-subscriber pattern last week with my client. In the process, decided to quickly hand-toss my own implementation of the pattern. Here’s an example where there’is a textbox and a […]
Here’s an example to convert the following imperative style of coding in JavaScript to functional style. The code prints out a list of even numbers in an array. var imperativeStyle = function(){ var numbers = [1,2,3,4,5,6,7,8,9,10]; var evenNumbers = []; […]
Now that my book on Ext JS 4 is over, here’s a list of books that I ordered today. I plan to read them in the next couple of months.
Developing Ext JS 4 applications using Eclipse is really painful. Period. OO programmers who write code in Ext JS 4 really miss the intellisense feature. JavaScript being a dynamically typed language there’s little support from the IDE. Visual Studio supports […]