Posts

Showing posts from October, 2012

Featured Post

Ajaxstart

Returns: jQuery .ajaxStart(handler()) handler() The function to be invoked. Register a handler to be called when the first Ajax request begins. This is an Ajax Event. Whenever an Ajax request is about to be sent, jQuery checks whether there are any other outstanding Ajax requests. If none are in progress, jQuery triggers the ajaxStart event. Any and all handlers that have been registered with the .ajaxStart() method are executed at this time. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxStart(function() { $(this).text('Triggered ajaxStart handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); When the user clicks the button and the Ajax request is sent, the log message is displayed. Note: Because .ajaxStart() is implemented as a m...

AjaxSend

Returns: jQuery .ajaxSend(handler(event, jqXHR, ajaxOptions)) handler(event, jqXHR, ajaxOptions) The function to be invoked. Attach a function to be executed before an Ajax request is sent. This is an Ajax Event. Whenever an Ajax request is about to be sent, jQuery triggers the ajaxSend event. Any and all handlers that have been registered with the .ajaxSend() method are executed at this time. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxSend(function() { $(this).text('Triggered ajaxSend handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); When the user clicks the button and the Ajax request is about to begin, the log message is displayed. Note: Because .ajaxSend() is implemented as a method of jQuery instances, we can use the t...

Sample Hibernate Mapping xml

Narayana Dasa.pdf Vedic Astrology Integrated Approach Brihat Parasar Hora Sastra.pdf Buddhi Gati Dasa.pdf <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="com.seo.Student" table="STUDENT"> <id name="id" column="id" type="java.lang.Integer"> <generator class="native"/> </id> <property name="addr" type="java.lang.Integer"/> <property name="village" type="java.lang.String"/> <property name="pin" type="java.sql.Date"/> <property name="books" type="java.sql.Date"/> </class> </hibernate-mapping>