problem Scrolling jTable in scrollpane
hi i get into a problem of scrolling jtable in scrollpane.Only horizontal scroll is working, vertical scroll is not working...here is m code:
try
{
PreparedStatement pst=c1.prepareStatement("select * from entry where visit_to_person=?");
pst.setString(1,visit_combo.getSelectedItem().toString());
ResultSet rs =pst.executeQuery();
while(rs.next())
{
vno= rs.getString(1);
vnam=rs.getString(2);
vtp=rs.getString(3);
pur=rs.getString(4);
in=rs.getString(5);
dat=rs.getString(6);
String s[]={vno,vnam,vtp,pur,in,dat};
Vector coldata=new Vector(Arrays.asList(s));
rowdata.add(coldata);
}
String[] head={"VISITOR NO","VISITOR NAME","VISIT TO PERSON","PURPOSE","IN TIME","DATE"};
colname=new Vector(Arrays.asList(head));
tableModel =new DefaultTableModel(rowdata, colname);
table = new JTable(tableModel);
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
JTableHeader header = table.getTableHeader();
JScrollPane pane = new JScrollPane(table);
pane.setAutoscrolls(true);
pane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
pane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
pane.setSize(450,300);
pane.setVisible(true);
panel.add(pane,BorderLayout.CENTER);
JFrame.setDefaultLookAndFeelDecorated(true);
}
catch(SQLException sq){}
*i hope to get a reply soon*
View Answers
March 26, 2011 at 4:37 PM
import java.sql.*;
import java.util.*;
import javax.swing.*;
class JTableExample extends JFrame {
private static int offset = 50;
public JTableExample(int horizPolicy, int vertPolicy, String title) {
final Vector columnNames = new Vector();
final Vector data = new Vector();
JPanel panel=new JPanel();
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "root");
Statement st = con.createStatement();
ResultSet rs= st.executeQuery("Select * from employee");
ResultSetMetaData md = rs.getMetaData();
int columns = md.getColumnCount();
for (int i = 1; i <= columns; i++){
columnNames.addElement(md.getColumnName(i));
}
while(rs.next()){
Vector row = new Vector(columns);
for (int i = 1; i <= columns; i++){
row.addElement(rs.getObject(i));
}
data.addElement(row);
}
}
catch(Exception e){}
JTable table = new JTable(data, columnNames);
setTitle(title);
offset += 50;
setLocation(offset,offset);
setSize(300,150);
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
JScrollPane scroll = new JScrollPane(table);
scroll.setHorizontalScrollBarPolicy(horizPolicy);
scroll.setVerticalScrollBarPolicy(vertPolicy);
getContentPane().add(scroll);
}
public static void main(String[] args) {
JTableExample f=new JTableExample(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED,JScrollPane.
VERTICAL_SCROLLBAR_AS_NEEDED,"HORIZONTAL_SCROLLBAR_AS_NEEDED");
f.setVisible(true);
}
}
Ads
Related Tutorials/Questions & Answers:
problem Scrolling jTable in scrollpane
problem Scrolling jTable in scrollpane hi i get into a
problem of
scrolling jtable in scrollpane.Only horizontal scroll is working, vertical scroll...));
tableModel =new DefaultTableModel(rowdata, colname);
table = new
JTable
problem Scrolling jTable in scrollpane
problem Scrolling jTable in scrollpane hi i get into a
problem of
scrolling jtable in scrollpane.Only horizontal scroll is working, vertical scroll...));
tableModel =new DefaultTableModel(rowdata, colname);
table = new
JTable
Advertisements
problem scrolling jtable
problem scrolling jtable hi,
i've to query the table thousand...);
MAIN
PROBLEM HERE'S M TABLE IS NOT PROPERLY SETTING IN
SCROLLPANE...REPLY SOON...;}};
table = new
JTable(tableModel
jTable data problem
jTable data problem Hello.
I have a code that read file and store in arraylist and then convert to array(To use for table model)
My class extends...(){
JFrame frame=new JFrame();
JTable table=new
JTable(rftl);
JPanel panel
jtable
jtable hey i have build a form and i m also able to add data from database to
jtable along with checkbox.the only
problem is that if i select multiple checkboxes the data doesnt get inserted into new database and if only one
JTable
JTable Values to be displayed in JTextfield when Clicked on
JTable Cells
JTable
JTable i want to delete record from
JTable using a MenuItem DELETE. and values of
JTable are fetched from database....please reply soon
JTable
JTable how to select a definite cell which containing a similar text containg to the one which the user entering from a
jtable at runtime in java
JTable
JTable Hello, i cannot display data from my table in the database to the cells of my
JTable. please help me
JTable
JTable below describes a program of research that results in a table, my
problem is that this same table to see it only accepts a single line even..."};
JTable table=new
JTable(data,labels);
JScrollPane pane=new JScrollPane
jtable
jtable how to get the values from database into
jtable and also add a checkbox into it and then when selected the checkbox it should again insert into database the selected chewckbox.plzz help
jtable
jtable hi
Sir
i am working netbeans IDE,I have a
jtable when i insert values in
jtable
then i am unable to print all inserted values,For eg if i insert 1,2,3,4,5,6,7,8 values
then , i am getting output
JTable
JTable Hi
I have problems in setting values to a cell in
Jtable which is in a jFrame which implements TableModelListener which has a abstract method
tableChanged(TableModelEvent e) .
I'll be loading values from data base when
JTable populate with resultset.
JTable populate with resultset. How to diplay data of resultset using
JTable?
JTable is component of java swing toolkit.
JTable class is helpful in displaying data in tabular format. You can also edit data.
JTable
Scrolling UIWebView JavaScript
Scrolling UIWebView JavaScript Hi, i am looking for an example code to make a
scrolling function for UIWebView in JavaScript.
Thanks
scrolling div ipad
scrolling div ipad Please suggest me how to scroll the div in iPad UIWebView?
Thanks
scrolling text in applet
scrolling text in applet applet to display the
scrolling text. The text should move from right to left. When it
reaches to start of the applet border, it should stop moving and restart from the left. When the applet
REPORT WITH JTABLE
(Exception e){}
JTable table = new
JTable(data, columnNames);
JScrollPane
scrollPane = new JScrollPane(table);
panel.add(
scrollPane);
add(panel);
}
public static void
Database Scrolling Buttons
Database
Scrolling Buttons Sir, I have two button "Next" and "Previous". I'am able to retrieve data from database but I don't understand as to how display data on next and previous button clicks. Please help me out
JTABLE OF JAVA
JTABLE OF JAVA i have a
jtable in java,i have used checkbox in
jtable.
now i want to add(submit) only those records that i have checked by checkbox how?
i want small example with coding
Jtable-Java
Jtable-Java Hi all,I have a
Jtable And i need to clear the data in the table .I only Need to remove the data in the table.not the rows.Please help me
sum in JTable
sum in JTable how to calculate sum from
JTable's one field like total
JTABLE Issue
JTABLE Issue Hi Eveyone,
I am developing a small application on Swing-AWT. I have used
JTABLE to show data. There is "input field" and "search... on basis of input data provided in input field. For
JTABLE is on some other
java swing (jtable)
java swing (
jtable) hii..how to get values of a particular record in
jtable from ms access database using java swing in netbeans..?? please help... from database and display it in
jtable.
import java.awt.*;
import java.sql.
jtable query
jtable query I need a syntax...where i could fetch the whole data from the database once i click the cell in
jtable...and that must be displayed in the nearby text field which i have set in the same frame
java jtable
java jtable Hello Sir, I am developing a desktop application in which i have to display database records in
jtable .now I want to read only... that in
jtable.
plz help me with the code
regarding jtable...
regarding
jtable... sir,
im working with jtables. i wanted to populate a
jtable from the database and when i click any row it should add a container... a container on the
jtable.
kindly help me sir.
thanks in advance
regards,
rajahari