How do I resize table columns individually using Netbean's GUI Builder?
In making a quick mockup of a project's end design using Netbeans' GUI Builder, I've run into a problem with the options given to me for the Table object. It seems that I can't resize columns individually,开发者_如何学Go only the whole table. Am I wrong, and is there a way to resize columns using the GUI Builder? If not, could I accomplish this using Swing code? How?
SInce the default JColumnModel
created by Netbeans GUI builder is hidden and cannot be customized in Properties plalette, you will have to do it programatically.
Go the `Source view' (there is a small button above the editor pane to switch between Source View and Design View) and put the following code in the constructor
/** Creates new form NewJFrame */
public NewJFrame() {
initComponents();
// Insert this line into your code
jTable1.getColumnModel().getColumn(0).setPreferredWidth(20);
}
Fore more details, read here or google for "jtable set column size".
Here is another useful information.
For anyone still looking for the answer that finds this post, the selected answer is not the correct way to do it from the Netbeans GUI.
As said in one of the answers here (by Heater Buch), in order to change the column width:
- In design view, right-click over the table;
- Choose "Table Contents ..." and a Customizer Dialog will appear.
- Click the "Columns" tab, and there you will be able to set several properties, including the preferred / minimum / maximum width.
精彩评论