Posts by FiREBiRD • 33 points
5 posts
-
1
votes1
answer91
viewsQ: Grab mouse position inside scroll pane
How do I get the mouse position inside a scroll pane in javafx? I have an app that does a drag and drop operation inside it, and I need that information to position the node on the screen. The…
-
0
votes1
answer204
viewsQ: Property . length of json object returning number out of reality
I have a json array with two property objects, an id and an email, and it has only three ojets within that array, but the number returned from the length property is 152. Can someone help me?…
-
0
votes1
answer420
viewsQ: How do I add a pane inside another pane via code like javafx?
I already know how to do that when it comes to a AnchorPane, is something like this: AnchorPane ap = new AnchoPane(); Label lbl = new Label("Qualquer"); ap.getChildren().add(lbl); But when it comes…
-
0
votes0
answers107
viewsQ: Select that takes mysql database options
So I have this code here and I don’t understand why it’s not working. I’m a beginner in PHP and I can’t make it work. // a conexão com o banco está em outro aquivo, por isso não achei necessário…
-
2
votes1
answer833
viewsQ: Display selected option in select with JS
I have an excerpt of code where I wish to pick up the value of option selected, with Javascript, and give a alert with that value. However, every time he gives the value as undefined. I made a line…