When it comes to coding, there are tons of languages to choose from. Students new to coding can choose between high-level languages like Python and low-level languages like C or C++. But which is the best one to start with? Every professional programmer on the planet made a choice like this one at the beginning …
Introduction to Hibernate Envers
Hibernate Envers is a library that helps us to easily achieve audit functionality. It aims to enable easy auditing/versioning of persistent classes/entities. It provides a built in mechanism to maintain history of tables in Hibernate. Hibernate Envers has been created by Adam Warski. From Hibernate 3.5, Envers is part of core module. Envers works in a similar fashion to Version …
JQueryUI Selectable Widget Example
jQueryUI provides selectable widget which allows selecting elements individually or in group elements by using the mouse. It also possible to select elements with the mouse hovering on the elements by dragging a box. Elements can be selected by clicking on the element or by dragging the element and also allows selecting of multiple elements …
JQuery UI Draggable Example
The drag is a common feature which is an event, enables dragging by allowing DOM elements to be moved using the mouse. It is something like, when we grab an object and drag it to a different location. It is an intuitive way for user to interact with website or application. Once the element is …
JQuery ajaxStart Example
The ajaxStart() method triggers when an Ajax request begins and there is no other requests are in active process. This method is used to show the graphics, when the data is loading from the server. When AJAX request begins, then the AjaxStart() method add to the function. Create Buttons using jQueryUI How to detect jQuery …
Introduction to Node.js
What is Node.js Node.js is a platform created by Ryan Dahl, for developing applications for better scalability. Node.js is based on event driven programming model. We can develop server-side and networking application using Node.js software platform. The primary objective of Node.js is to maximize the throughput of the applications, and Node.js uses non-blocking I/O. Node.js …
UITableView in iOS
UITableView is a type of a view used to display the data in the form of a table. The UI control consists of one column and the number of rows can be specified by user. It inherits from UIView, UIResponder and NSObject classes. UITableView control is present in the object library in Xcode. It consists …
IOS Tutorial : Hello World Application using Xcode 5.0
Xcode 5.0 is an IDE used for software development. It is a tool developed by Apple. Xcode 5.0 and later helps you to design and develop iOS application for iOS 7 and Mac OSx. You can download the IDE from apple developer website for Mac OS. Let us start developing our first application in Xcode, …