Bon Gun

Greenhorn
+ Follow
since May 30, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Bon Gun

Hi guys! When you run a javafx application the Stage is located at the center of the screen, is there a way to translate it at the right corner of the screen?
10 years ago
Is there a way to disable an HTMLEditor so that the user cant perform inputs to it?
10 years ago
Hi!
How to get html content in a Web View?
For example,

webview=new WebView();
webengine=webview.getEngine();
webengine.loadContent("<b><h1>hello html</h1></b>");

Is there a way to get the html content (<b><h1>hello html</h1></b>) ? How?

Thanks in advance.
10 years ago
I know how to send a post request using html input tags but is it possible to send a variable value to the server?
I have this variable:

<%!String name="gon";%>

I want to send the variable value ( gon ) using post request, can i? How?

Thanks...
10 years ago
JSP
Thank you sir... I appreciate it!
10 years ago
Yes, thats right! I apologize for the long reply.
10 years ago
Hi everyone,

I am new to javafx, I created a code similar to this tutorial: http://docs.oracle.com/javafx/2/ui_controls/table-view.htm

Question: How to display the data from TableView?

Example: I want to display the cell value from row1-column1 to row3-column1.

System.out.println(table-column1-row1);
System.out.println(table-column1-row2);
System.out.prinlnt(table-column1-row3);

What would be the codes? Please help me.
10 years ago