Posts by Kosonome • 131 points
2 posts
-
0
votes1
answer68
viewsA: Hibernate Query using Like and Where
Your JPQL is with the OR without the parentheses. Make sure this new JPQL can help you: SELECT c FROM Cliente c WHERE c.filial =:filial AND c.ativo =:ativo AND c.tipoCliente =:tipoCliente AND (…
-
0
votes1
answer94
viewsA: Dropdown Hidden
When you are using $(this).css("transform") == 'none', the $(this) refers to the <a>. This means it will always return true because you do not change the style of the tag <a>. When you…