Table « Interoperability « Java Swing Q&A





1. Editable tables in SWT    coderanch.com

2. Table...editing in swt..    coderanch.com

3. Editable Table in SWT?    coderanch.com

I've been trying to make a very simple 2 column table with several TableItem objects (i.e rows in the table as their called). This is then "wrapped" up in a TableEditor object (as opposed to leaving it in a read-only Table object), exactly as the example shown on the Eclipse "snippets" website: http://dev.eclipse.org/viewcvs/index.cgi/platform-swt-home/snippits/snippet88.html?rev=1.3 This works great but it has one big ...

4. A few SWT Questions - Table / TableTree    coderanch.com

hi everyone I have some swt questions. hope someone can help me out here. TabelTree: Is it possible to put the expand/collaps boxes in any other column other than the first one? I gotta have them in the 3 column. if that's not possible, how else could that be done? Regular Table & TableTree Is it possible to wrap text in ...

5. SWT:Table    coderanch.com

6. SWT : How do i include a table in a CTabFolder or TabFolder ?    coderanch.com

can someone tell me how best to go about this? why cant i do something like this for example?... ............ ............ Display display = new Display (); Shell shell = new Shell (display); GridLayout gridLayout = new GridLayout (); shell.setLayout (gridLayout); CTabFolder folder = new CTabFolder (shell, SWT.BORDER); Composite item1 = new Composite (folder, SWT.CLOSE); Composite item2 = new Composite (folder, ...

7. Why can't I delete item form table.(SWT)    coderanch.com

Sorry for my poor English first. And my question is , if I use the code which change the height of the line ,I could not click the delete button to delete one line form the table. I don't known why, please help me !! The following is the complete demo code : ........................................................ public class ww { private Table table; ...

8. synchronizing windows that view db table    coderanch.com

Yes, it does involve listeners. Let me move this to the Swing forum where such listeners are normally discussed. (I wouldn't expect the listener to have to go to the database when it is notified that the first table model has been changed. Actually I would expect that both JTables would have the same table model if possible.)

9. Add filter like MSExcel to SWT table object.    coderanch.com

Hi, I have a SWT table with column name like Part No, Manufacturing date, Installation date and etc. And i have to attach filter to my table column to filter the data. Filter should work like as MSExcel filter after selection colun headaer one pop up will be shown with all common data and by selection one value from common data ...





10. table selection in SWT    coderanch.com

11. need to create editable SWT table showing contents of a TreeMap......    coderanch.com

Hi everyone, I'm currently trying to work through my Java certification and at the same time do some hobby developing, to put into practice what I'm learning through the books. I've been at it most of this year, have recently confortably passed my SCJA, am planning to kick on with the SCJP, and have a half-finished Java project on the go. ...

12. tabFolder, table and SWT.EraseItem problem    coderanch.com

I am using SWT to create a GUI for my program. I have a shell with a tabFolder with two tabItems. Each of the tabItems controls a different table, so I have two tables in total. Every 5 minutes I update the contents of both of the tables. I searched for a way to customize the color of a selected item ...