Link to home
Start Free TrialLog in
Avatar of Aurii
Aurii

asked on

Set JTable non editable

I am using JTable in my application. I want to set all cells of table non-editable. How can I do it? Please help.
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Avatar of Aurii
Aurii

ASKER

I am using netbeans. I took JTable 'tblSearch' by drag and drop and done below coding

private String rows[][] = new String[0][5];
    private String columns[] = {"Doctor ID","Doctor Name","Address","Contact Number","E-mail Id"};
    private javax.swing.table.DefaultTableModel tm = new javax.swing.table.DefaultTableModel(rows,columns);

tblSearch.setModel(tm);

The code from your example is not working for my code. Please suggest solution for my code.
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Aurii

ASKER

Thank you its' worked. But if I need some cell editable and some non editable then how can can I do it?
You need to return true/false for the appropriate cell
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Aurii

ASKER

Hi CEHL, I am not geting how to return true/false for the appropriate cell for my code. I want to set all table non editable except some cells. Please suggest solution for my code.

Hi objects, Actually your code works for single column but what if I want to set it for multiple columns.

Actually my 1 table want all cells non editable except some cells And my another table want all cells non editable except some columns.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Aurii

ASKER

Hi chej, Actually your code is working for hole row. what if I need to set some cell editable, let's say (2,3) and (5,8)
explained that in my previous comment
you would use

        return (mColIndex==2 && rowIndex=3) || (mColIndex==5 && mRowIndex=8);
Avatar of Aurii

ASKER

but this statement giving me following error,
'operator && cannot be applied to boolean,int'
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
:)