Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_java thread: Page 301: cell editor example


Message #1 by peter@p... on Wed, 23 Oct 2002 15:22:56
Problem Solved:
new code:
public Component getTableCellEditorComponent(JTable table, Object value,
	boolean isSelected, int row, int column)
	{
		tf = new JTextField();
		tf.setText(value.toString());
				
		return tf;
		
	}
Also--> 

public Object getCellEditorValue()
	{
		return new Float(tf.getText());
	
	}

  Return to Index