Friday, June 18, 2010



I am the founder of the Hibernate project, an open source object/relational mapping solution for Java. I recently joined JBoss Inc, so that I could concentrate fulltime on developing Hibernate and building a business around support, training and consulting services. I'm also working hard to bring some of our ideas about persistence into the Java standards, via the JCP process. I've just finished writing a book called "Hibernate in Action" with Christian Bauer.


Observe this all words written himslef.........SreenivasReddy


1 comment:

  1. //Check Form is dirty or not
    function isFormValuesChanged() {
    var isDirty = false;
    try{
    $(':input').each(function () {
    if($(this).data('initialValue') != 'undefined' && $(this).val() != 'undefined' && $(this).data('initialValue') != $(this).val()){
    isDirty = true;
    }
    });

    }catch(e){
    }
    return isDirty;
    }

    ReplyDelete