- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a Default Cell Editor with textbox in Java?
Create a JTextBox first −
JTextField textField = new JTextField();
Set the above JTextFile for the Default Cell Editor −
TreeCellEditor editor = new DefaultCellEditor(textField); tree.setEditable(true); tree.setCellEditor(editor);
The following is an example to create a default cell editor with textbox −
Example
package my; import javax.swing.DefaultCellEditor; import javax.swing.JFrame; import javax.swing.JTextField; import javax.swing.JTree; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreeCellEditor; public class SwingDemo { public static void main(String[] args) throws Exception { JFrame frame = new JFrame("Demo"); DefaultMutableTreeNode node = new DefaultMutableTreeNode("Products"); DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("Clothing"); DefaultMutableTreeNode node2 = new DefaultMutableTreeNode("Electronics"); DefaultMutableTreeNode node3 = new DefaultMutableTreeNode("Home Decor"); DefaultMutableTreeNode node4 = new DefaultMutableTreeNode("Furniture"); node.add(node1); node.add(node2); node.add(node3); node.add(node4); DefaultMutableTreeNode one = new DefaultMutableTreeNode("Shirt"); DefaultMutableTreeNode two = new DefaultMutableTreeNode("Trousers"); DefaultMutableTreeNode three = new DefaultMutableTreeNode("Jeans"); DefaultMutableTreeNode four = new DefaultMutableTreeNode("Mobiles"); DefaultMutableTreeNode five = new DefaultMutableTreeNode("Camera"); DefaultMutableTreeNode six = new DefaultMutableTreeNode("Tablet"); DefaultMutableTreeNode seven = new DefaultMutableTreeNode("Paintings"); DefaultMutableTreeNode eight = new DefaultMutableTreeNode("Showpieces"); DefaultMutableTreeNode nine = new DefaultMutableTreeNode("Wardrobes"); DefaultMutableTreeNode ten = new DefaultMutableTreeNode("Bean Bags"); node1.add(one); node1.add(two); node1.add(three); node2.add(four); node2.add(five); node2.add(six); node3.add(seven); node3.add(eight); node4.add(nine); node4.add(ten); JTree tree = new JTree(node); for (int i = 0; i < tree.getRowCount(); i++) { tree.expandRow(i); } tree.putClientProperty("JTree.lineStyle", "Angled"); JTextField textField = new JTextField(); TreeCellEditor editor = new DefaultCellEditor(textField); tree.setEditable(true); tree.setCellEditor(editor); tree.setRowHeight(25); frame.add(tree); frame.setSize(600,450); frame.setVisible(true); } }
This will produce the following output −
- Related Articles
- How to create a Default Cell Editor that uses a JCheckBox in Java?
- How to create a Default Cell Editor that uses a JComboBox in Java?
- How to modify the default editor of JShell in Java 9?
- How to create a default constructor in Java?
- How to create a canvas with Textbox using FabricJS?
- How to create a Textbox with background colour using FabricJS?
- How to create a Textbox with border colour using FabricJS?
- How to create a Textbox with dash pattern border using FabricJS?
- How to type in textbox using Selenium WebDriver with Java?
- How to create a Textbox with crosshair cursor on moving objects using FabricJS?
- How to create a Textbox with help cursor on moving objects using FabricJS?
- How to create a Textbox with progress cursor on moving objects using FabricJS?
- How to create a Textbox with text cursor on moving objects using FabricJS?
- How to create a Textbox with wait cursor on moving objects using FabricJS?
- How to set a value in a particular JTable cell with Java?

Advertisements