terça-feira, 28 de agosto de 2012

<ace:dateTimeEntry/> Correção do problema do componente

Correção do problema do componente


ice.onAfterUpdate( function (){
    var calendars = $('.hasDatepicker');
    if (calendars){
        ice.ace.jq.datepicker.initialized = false;
    }
});


jQuery(function($){
    ice.onBeforeUpdate( function (){
        ice.ace.jq.datepicker.initialized = false;
    });
}

segunda-feira, 27 de agosto de 2012

Cache jQuery

AJAX cache problem in IE, AJAX cache issue IE

Disable Cache in jQuery

Best way to avoid caching is by disabling it through jQuery setup. Following code snippet does this:

$.ajaxSetup ({
// Disable caching of AJAX responses
cache: false
});
Try to use this method of disabling cache in case you using different Ajax loading techniques such as.load(), .getJSON() etc.

quarta-feira, 15 de agosto de 2012

Inclusão dos parâmetros no log do servidor

Acrescentar nas configuração de log o seguinte filtro

<logger name="org.hibernate.type.descriptor.sql.BasicBinder" level="TRACE"/>

caso ocorra erros verificar o pacote correto que faz o bind com

<logger name="org.hibernate.type" level="TRACE"/>