When we write code inside of a controller then we need to fetch data from web server and web server might need to talk to SQL database or XML files on desk and get back data from server in order to communicate to the server and it’s a job of $http service available in...
I am using AngularJS from a while now and decided to write a series of post on AngularJS now. I will start with a basic Hello World post which mostly focuses on how to setup environment for AngularJS to use it. Later I will gradually cover up all (or most of) important concepts on...
Let’s see today what Sencha touch has to offer us in term of showing message, notifications to users. When you are developing any mobile application and need to show some message to user as a pop-up window, or want to take an input from user, or want to display validation messages when user failed...
Among many very important and useful plug-ins for ExtJS grid is RowExpander plug-in. It is particularly useful in the scenario where you have more date to show in grid but less space available on screen. In this case you can go for grid’s rowexpander plug-in. RowExpander is functionality where if user wants he can...
ExtJS is one of the best client-side JavaScript widget frameworks which come with hundreds of build-in components and it’s also very easy to extend or customized those components. One of the most useful components is ComboBox. We can use combobox to populate groups of items on it, select one or multiple items and can...
In today’s post I am going to show you how to create a simple form in Sencha Touch with validation. I will create a simple Login form with username and password field and create a model which contains fields and validation logic. Once user submit form for login, we get the validation logic and...
Sencha Touch’s NestedList component is very handy when it comes to show hierarchical data with some relation. We usually use NestedList when we have data in a child-parent relationship as a tree, where you have a node and many leafs associate to that node. Each leaf itself is a node which has many leafs...
In my last post, I demonstrate Sencha touch List using Spring MVC. The post was good except one thing – we display all movies in a single list at once. For that example its good because we have only 20 movie records to show and Sencha touch stores default page size it 25 but...
Most important and useful component in mobile application is List. In this tutorial you will learn how to create Sencha Touch List view with Spring MVC 3 in backend. For this tutorial I am going to create a List of movies with other details using Sencha Touch, it’s very basic and easy tutorial and...
I was working on a requirement where in my TabPanel we have many tabs open parallelly. If user wants to close any if the tab, we should first ask user whether he really want to close this tab. If in the TabPanel we have only one tab remaining then we should not allow user...