Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Nebula » FormattedText not working in JFace data binding scenario
FormattedText not working in JFace data binding scenario [message #532592] Mon, 10 May 2010 14:22 Go to next message
Geejay is currently offline GeejayFriend
Messages: 160
Registered: February 2010
Senior Member
Hello

I am using the FormattedText widget, and to perform databinding I am using a
JFace, PojoObservables setup.

Here is the interesting code:

IObservableValue uiElement =
SWTObservables.observeSelection(field.getValueControl());
IObservableValue modelElement = PojoObservables.observeValue(modelObject,
field.getId());
IValidator validator = field.getUiValidators().iterator().next();
UpdateValueStrategy strategy = new
UpdateValueStrategy().setAfterConvertValidator(validator);
bindingContext.bindValue(uiElement, modelElement, strategy, null);

field.getValueControl() returns the text widget on the FormattedText widget,
i.e it calls FormattedText.getControl().

It seems that when I save a value which fails validation, and then reload
the model object into the UI, then I only get the first couple of digits in
the number in the text control.

Whats the correct process for binding to the FormattedText? Should I just be
setting the underlying Text widget?
Re: FormattedText not working in JFace data binding scenario [message #532700 is a reply to message #532592] Mon, 10 May 2010 21:19 Go to previous messageGo to next message
Eric Wuillai is currently offline Eric WuillaiFriend
Messages: 27
Registered: July 2009
Junior Member
To perform databinding on a FormattedText, you can use
FormattedTextObservableValue. I added it recently (2 month ago).
Look at NumberFormatterDataBindingSnippet for an example.

Eric

> Hello
>
> I am using the FormattedText widget, and to perform databinding I am
> using a JFace, PojoObservables setup.
>
> Here is the interesting code:
>
> IObservableValue uiElement =
> SWTObservables.observeSelection(field.getValueControl());
> IObservableValue modelElement =
> PojoObservables.observeValue(modelObject, field.getId());
> IValidator validator = field.getUiValidators().iterator().next();
> UpdateValueStrategy strategy = new
> UpdateValueStrategy().setAfterConvertValidator(validator);
> bindingContext.bindValue(uiElement, modelElement, strategy, null);
>
> field.getValueControl() returns the text widget on the FormattedText
> widget, i.e it calls FormattedText.getControl().
>
> It seems that when I save a value which fails validation, and then
> reload the model object into the UI, then I only get the first couple of
> digits in the number in the text control.
>
> Whats the correct process for binding to the FormattedText? Should I
> just be setting the underlying Text widget?
Re: FormattedText not working in JFace data binding scenario [message #532795 is a reply to message #532700] Tue, 11 May 2010 09:05 Go to previous message
Geejay is currently offline GeejayFriend
Messages: 160
Registered: February 2010
Senior Member
Hi Eric

I tried this out, but I couldn't get it to bind.

I noticed the snippet uses PropertyChangeSupport (BeansObservables), I am
actually trying to use PojoObservables. I also have a ControlDecorator setup
on the widget, which doesnt seem to fire.

Any ideas off the top of the head?

Thanks again

Greg


"Eric Wuillai" <eric@wdev91.com> wrote in message
news:hs9t98$odq$1@build.eclipse.org...
> To perform databinding on a FormattedText, you can use
> FormattedTextObservableValue. I added it recently (2 month ago).
> Look at NumberFormatterDataBindingSnippet for an example.
>
> Eric
>
>> Hello
>>
>> I am using the FormattedText widget, and to perform databinding I am
>> using a JFace, PojoObservables setup.
>>
>> Here is the interesting code:
>>
>> IObservableValue uiElement =
>> SWTObservables.observeSelection(field.getValueControl());
>> IObservableValue modelElement =
>> PojoObservables.observeValue(modelObject, field.getId());
>> IValidator validator = field.getUiValidators().iterator().next();
>> UpdateValueStrategy strategy = new
>> UpdateValueStrategy().setAfterConvertValidator(validator);
>> bindingContext.bindValue(uiElement, modelElement, strategy, null);
>>
>> field.getValueControl() returns the text widget on the FormattedText
>> widget, i.e it calls FormattedText.getControl().
>>
>> It seems that when I save a value which fails validation, and then
>> reload the model object into the UI, then I only get the first couple of
>> digits in the number in the text control.
>>
>> Whats the correct process for binding to the FormattedText? Should I
>> just be setting the underlying Text widget?
Re: FormattedText not working in JFace data binding scenario [message #599598 is a reply to message #532592] Mon, 10 May 2010 21:19 Go to previous message
Eric Wuillai is currently offline Eric WuillaiFriend
Messages: 27
Registered: July 2009
Junior Member
To perform databinding on a FormattedText, you can use
FormattedTextObservableValue. I added it recently (2 month ago).
Look at NumberFormatterDataBindingSnippet for an example.

Eric

> Hello
>
> I am using the FormattedText widget, and to perform databinding I am
> using a JFace, PojoObservables setup.
>
> Here is the interesting code:
>
> IObservableValue uiElement =
> SWTObservables.observeSelection(field.getValueControl());
> IObservableValue modelElement =
> PojoObservables.observeValue(modelObject, field.getId());
> IValidator validator = field.getUiValidators().iterator().next();
> UpdateValueStrategy strategy = new
> UpdateValueStrategy().setAfterConvertValidator(validator);
> bindingContext.bindValue(uiElement, modelElement, strategy, null);
>
> field.getValueControl() returns the text widget on the FormattedText
> widget, i.e it calls FormattedText.getControl().
>
> It seems that when I save a value which fails validation, and then
> reload the model object into the UI, then I only get the first couple of
> digits in the number in the text control.
>
> Whats the correct process for binding to the FormattedText? Should I
> just be setting the underlying Text widget?
Re: FormattedText not working in JFace data binding scenario [message #599605 is a reply to message #532700] Tue, 11 May 2010 09:05 Go to previous message
Geejay is currently offline GeejayFriend
Messages: 160
Registered: February 2010
Senior Member
Hi Eric

I tried this out, but I couldn't get it to bind.

I noticed the snippet uses PropertyChangeSupport (BeansObservables), I am
actually trying to use PojoObservables. I also have a ControlDecorator setup
on the widget, which doesnt seem to fire.

Any ideas off the top of the head?

Thanks again

Greg


"Eric Wuillai" <eric@wdev91.com> wrote in message
news:hs9t98$odq$1@build.eclipse.org...
> To perform databinding on a FormattedText, you can use
> FormattedTextObservableValue. I added it recently (2 month ago).
> Look at NumberFormatterDataBindingSnippet for an example.
>
> Eric
>
>> Hello
>>
>> I am using the FormattedText widget, and to perform databinding I am
>> using a JFace, PojoObservables setup.
>>
>> Here is the interesting code:
>>
>> IObservableValue uiElement =
>> SWTObservables.observeSelection(field.getValueControl());
>> IObservableValue modelElement =
>> PojoObservables.observeValue(modelObject, field.getId());
>> IValidator validator = field.getUiValidators().iterator().next();
>> UpdateValueStrategy strategy = new
>> UpdateValueStrategy().setAfterConvertValidator(validator);
>> bindingContext.bindValue(uiElement, modelElement, strategy, null);
>>
>> field.getValueControl() returns the text widget on the FormattedText
>> widget, i.e it calls FormattedText.getControl().
>>
>> It seems that when I save a value which fails validation, and then
>> reload the model object into the UI, then I only get the first couple of
>> digits in the number in the text control.
>>
>> Whats the correct process for binding to the FormattedText? Should I
>> just be setting the underlying Text widget?
Previous Topic:FormattedText not working in JFace data binding scenario
Next Topic:Empty Nebula DateChooserCombo
Goto Forum:
  


Current Time: Fri Apr 19 05:35:25 GMT 2024

Powered by FUDForum. Page generated in 0.01736 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top