View Single Post
  #2 (permalink)  
Old 05-09-2008, 06:38 AM
ab5602 ab5602 is offline
Member
 
Join Date: Nov 2007
Location: Detroit, MI
ZCS Version: Release 5.0.5_GA_2201.UBUNTU6 DEBIAN4.0 NETWORK edition
Posts: 23
ab5602 is on a distinguished road
Send a message via Yahoo to ab5602
Default

I ran into this problem too.. The issue turned out to be that the 'select' option does not seem to be available to the DwtPropertyEditor object. Instead, you have to create your own dialog box, without using DwtPropertyEditor & fill it with your own HTML:

Code:
this._view = new DwtComposite(this.getShell()); 
...
this._select = new DwtSelect(this._view);
Hope this helps!
Reply With Quote