Dear all,I am using a Java Rmi application which was developed in java 1.4 version, now i changed my version to java 1.6 but my Rmi application doesn't run properly it having some problem in keylistener events.How to resolve it.
sstMatl.table.addContainerListener(new ContainerAdapter(){
public void componentAdded(ContainerEvent ce){
Component[] cmpts = sstMatl.table.getComponents();
cmpts[1].addKeyListener(new KeyAdapter(){
public void keyReleased(KeyEvent ker){
if(sstMatl.table.getCellEditor()!=null)
sstMatl.table.getCellEditor().stopCellEditing();
if( ker.getKeyCode()>=48 && ker.getKeyCode()<=57 || ker.getKeyCode()>=96 && ker.getKeyCode()<=105 || ker.getKeyCode()==8 || ker.getKeyCode()==127){
int qtytoasgnindex=0;
if(mode==1){
qtytoasgnindex = sstMatl.table.getColumnModel().getColumnIndex("Qty To Add");
}else{
qtytoasgnindex = sstMatl.table.getColumnModel().getColumnIndex("To Be Assigned Qty");
}
double tottobeasgnqty=0;
for(int i=0;i<sstMatl.table.getRowCount();i++){
if(sstMatl.table.getValueAt(i,qtytoasgnindex)!=null && !sstMatl.table.getValueAt(i,qtytoasgnindex).equals("")){
tottobeasgnqty+=Double.parseDouble(sstMatl.table.getValueAt(i,qtytoasgnindex).toString());
}
}
jltoassignval.setText(tottobeasgnqty+"");
}
}
});
}
});
my input is===12 My problem is occur in this code only.i have one sortSelect table --sstMat1.in this table last column is an editable column. in that if i enter any number it will added those no and displays that into onr textbox---jltoassignval.My above condition will work for each key release(each digit) based if condition.for eg if i press 1 the condition works and txt box having 1 as total(cursor is in same row in that table).if again press two in same column it stores 12 as total in txt box. it works fine in both the versions of java, but when i sort select this table this condition fails.
for eg
if i press 1 the condition works and stores 1 as total in txtbox but control is get out of that particular row in table again i need to select that particular row for pressing 2.