Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[nebula-dev] Eclipse Forms and Nebula FormattedText

Hi,

I am trying to use the FormattedText with Eclipse Forms.

My code to render the text field look like this:

	    text_4 = toolkit.createText(body, null, SWT.BORDER);
	    text_4.setBounds(427, 58, 92, 21);
	    FormattedText text10 = new FormattedText(text_4);
	    NumberFormatter formatter = new NumberFormatter();
	    formatter.setFixedLengths(false, true);
	    text10.setFormatter(formatter);
	    text10.setValue(new Double(123.4));

It shows the text field, but no formatting is being shown. Neither the
default value appears.

Somebody can give me some help on this?

I searched the net and this forum, but could not find anything related
to this issue.

Thanks in advance.

Marcelo
-- 
Marcelo Alcantara
Senior Developer/Architect
--------------------------------------------------------
maralc@xxxxxxxxx
+55 11 81968823


Back to the top