Ext JS

Unit testing Ext JS4 using Jasmine

Unit testing Ext JS4 using Jasmine

Ext JS4 recommends unit testing of the application using Jasmine library. The article can be found here. Given below are some screenshots of a simple application that has been unit tested with Jasmine. The application is implemented in the MVC […]

Ext.data.DirectStore with DirectJNgine

In the previous post, we saw an example of Ext.direct using DirectJNgine. Let’s discuss using Ext.data.DirectStore to populate a combobox in this post. We’ll display a list of countries in the combobox. The server side code that returns a list […]

A Simple example of Ext.direct using DirectJNgine

During the Struts days, there was a library called DwR (Direct Web Remoting) that was popularly used to access the Java classes directly from JavaScript. DwR provided a JavaScript wrapper for the server side Java classes, so the code will […]

A custom grid component in Ext JS4

Continuing my work on custom components in Ext JS4, let’s create a custom grid component. This component takes up JSON data and displays it in a tabular format. The component is used as shown below { xtype : "mygrid", fields […]

A Link component with custom events in Ext JS 4

In the earlier post, we discussed creating a link component in Ext JS 4 using a template-based approach. In this post, let’s try to add our own events to the link component and register an event handler for the same. […]