Prabhu Sunderaraman

JSON data from NodeJS into iPhone app

Given below is a simple example of loading JSON data from a Node JS application into an iPhone application. The JSON data is serialized into a collection class. The Node JS application is a http server implementation that returns a […]

TDD in iPhone applications

One aspect of development of apps for iOS devices, that has surprised me is developers ignoring the unit testing capabilities of Objective-C. Most of the developers who develop apps on iPhone ignore the testcase files that are created while creating […]

MVP example in GWT

GWT applications are designed using Model-View-Presenter (MVP) pattern. You can find a sample MVP application at https://github.com/prabhu-durasoft/GWTMVPExample1/ The MVP example has been slightly tweaked. The application throws up a textbox where you can enter a name of a country. On […]

Charts in GXT 3

Charts in GXT 3

You can find a basic pie and bar chart implementation in https://github.com/prabhu-durasoft/ChartGXT3 in GXT 3. The example displays the charts as shown below.

Basic Grid using UiBinder in GXT3

UiBinder in GWT provides you a facility for declarative UI. The UI is defined in a xml file and the code associated with the UI is defined in a separate java file. You can find a grid example in GXT3 […]