• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

TableItem in SWT Designer Tutorial

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I try to follow the Eclipse's SWT Designer building ClientBilling application. However, after create a table, tablecolumn, I found there are no tableItem available under SWT controls.

Does anybody run same problem?

here's the tutorial I try to use.

http://www.cs.umanitoba.ca/~eclipse/

12. An Eclipse GUI Builder (Instantiations SWT/Swing Designer) tutorial

thanks,

Yumei
 
author
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by YumeiWavrek lu:
I try to follow the Eclipse's SWT Designer building ClientBilling application. However, after create a table, tablecolumn, I found there are no tableItem available under SWT controls. Does anybody run same problem?

TableItems were purposefully excluded from the palette because you need to programatically add them to a table based upon your domain model. Having them statically available on the palette would encourge incorrect usage. Rather than using a simple Table with TableItems, I would suggest using a TableViewer with a ContentProvider.
 
YumeiWavrek lu
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Eric,

Thank you for your response and I'll try that approach.

Yumei
 
Whoever got anywhere by being normal? Just ask this exceptional tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic