Aterando jQuery simples
26/09/2016
0
Motivo: dólar da conflito com o primefaces
OBS: não adianta substituir por outra variavel
jQuery(document).ready(function($) { $(".popupExibirInformacoes").css('right', '-300px'); var isExpanded = false; $(".m-menu").click(function () { if (!isExpanded) { $('.popupExibirInformacoes').animate({ right: '0' }, { duration: 500, queue: false }); $('#ColunaDireitaTabela').animate({ 'width': '80%' }, { duration: 500, queue: false }); } else { $('#ColunaDireitaTabela').animate({ 'width': '100%' }, { duration: 500, queue: false }); $('.popupExibirInformacoes').animate({ right: '-300' }, { duration: 500, queue: false }); } isExpanded = !isExpanded; }); });
Michael Batista
Posts
26/09/2016
Michael Batista
26/09/2016
Michael Batista
http://www.tiikoni.com/tis/view/?id=34ba49f
http://www.tiikoni.com/tis/view/?id=475d4ea
http://www.tiikoni.com/tis/view/?id=9cddad8
27/09/2016
Victor Machado
Já tentou fazer assim?
jQuery(document).ready(function(jQuery) { jQuery(".popupExibirInformacoes").css('right', '-300px'); var isExpanded = false; jQuery(".m-menu").click(function () { if (!isExpanded) { jQuery('.popupExibirInformacoes').animate({ right: '0' }, { duration: 500, queue: false }); jQuery('#ColunaDireitaTabela').animate({ 'width': '80%' }, { duration: 500, queue: false }); } else { jQuery('#ColunaDireitaTabela').animate({ 'width': '100%' }, { duration: 500, queue: false }); jQuery('.popupExibirInformacoes').animate({ right: '-300' }, { duration: 500, queue: false }); } isExpanded = !isExpanded; }); });
27/09/2016
Michael Batista
mas depois eu consegui resolver, simplesmente retirando a div popup de dentro de um <p:panelGroup> do primefaces
mas mesmo assim Obrigado a galera que tentou ajudar.
Clique aqui para fazer login e interagir na Comunidade :)