Posts by Vitor Alves Rocha • 31 points
4 posts
-
0
votes1
answer190
viewsA: Write to bank only chekbox checked at angular
Well, come on. That was the solution I found regarding what I understood of your problem. You have a list of already populated professions and from the selections that the user makes in it you want…
-
1
votes1
answer153
viewsA: createQuery(HQL) returns Nullpointerexception when trying to perform LEFT OUTER JOIN
in fact the query should be as follows: select c.id, c.solicitante from <mypackage>.Exame c LEFT OUTER JOIN c.solicitante prof i.e., use the attribute name instead of the class name (being…
-
1
votes1
answer153
viewsQ: createQuery(HQL) returns Nullpointerexception when trying to perform LEFT OUTER JOIN
Personal talk, I have a problem trying to run an HQL on my application. The HQL is basically this: select c.id, c.solicitante from <mypackage>.Exame c LEFT OUTER JOIN…
-
1
votes1
answer847
viewsQ: Javafx - button-click event, inside a table, does not work
I am in a Javafx project where I needed to make an autocomplete in an input. We have some plugins that can be used, but the autocomplete was so simple that we prefer to do on hand same. Here is the…