Most of the web applications contains more content then what can be displayed on a single page to the user.Also the application may have different groups or categories related to the different entities in the application.In an e-commerce site for example there can be categories for books,electronics ,clothes etc.If we are going to display all […]
jQuery
Dialog in jquery
In javascript we use the alert or confirm message box to display message to the end user.Though it is the commonly used way to show informational message to the end user it has the following shortcomings Message box may defer from browser to browser It is not easy to customize the fixed layout of the […]
Datepicker in jQuery
jQuery has many different types of widgets which makes it easy to add different types of functionalists in our applications.One commonly used widget is Datepicker. Most of the applications provides user the option to select the dates.So instead of allowing the user to select date in any arbitrary format which is also inconvenient for the user, we can use the datepicker […]
Using the jQuery ajax method in MVC
jQuery includes several methods for implementing the ajax functionality in our applications.In the last post we looked at the jQuery get() and post() methods.These methods ,as per their names, makes GET and POST requests to the server.Behind the scenes these methods use the jQuery ajax() method.So it helps to understand the ajax() method which provides […]
jQuery get and post ajax methods in MVC
AJAX or Asynchronous Javascript and XML is used for communication between the client and the server.Using AJAX the parts of a web page can be updated without a full page refresh.This not only results in less data transfer but also results in a better experience for the end user. AJAX is very common on the […]