I had a similar problem and have done the actualization of the selectable values using a RefreshableValueHolder:
private class YourValueHolder extends RefreshableValueHolder{
public...
Type: Posts; User: ecardoso; Keyword(s):
I had a similar problem and have done the actualization of the selectable values using a RefreshableValueHolder:
private class YourValueHolder extends RefreshableValueHolder{
public...
How does the presentation model relates to the rcp architecture?
I am using rcp for more than 4 years, and the infrastructure provided by TableFormBuilder seams to consolidade the role of View and...
I'm using it past two years. And I'm quite happy with it.
I think you will have trouble in the beginnig to find the way to do things. But you can always do stuff in swing and use the RCP...
Since I upgraded my application to version 1.0.0, there are always a empty message in TitledPageApplicationDialog wiht the 'i' (information) icon.
How can I solve that?
Why not use ApplicationListener?
You can install a render to work around it, like:
@Override
protected void configureTable(JTable table) {
super.configureTable(table);
final DefaultTableCellRenderer rowRenderer =...
Worked. Tks.
I recently made a upgrade in my application to version 1.0.0.
Since then all the dialogues had started to present "displayName" in the TitledPage. How do I correct this? :confused:
In my application, I need to change some Spring configurations using main args[].
So in main I prepare a PropertyPlaceholderConfigurer with the arguments. And register it using...
I think it is interesting that the splash screen with progress monitor can be used with ApplicationLauncher(String startupContextPath, ApplicationContext rootApplicationContext).
The actual...
I´m using it in in the same way others described here (get a SNAPSHOT of 0.3.0). Sometimes it is useful to read the code to use all the funcionalities provided.
I´m from Brazil and need to validate an int field with decimal point as the thousands separator. The Spring RCP validation is using decimal comma as the thousands separator in my int fields on my...
I want to open a login window just after de splash screen goes off.
Is there an event just after the splash goes off?
I found a solution:
PerspectiveManager.getInstance().setCurrentPerspective(perspectiveId, true);
PerspectiveManager.getInstance().reload();
where String perspectiveId is the new...
Hi!
Is there a way to create a command in a tool bar to switch perspectives?
I have tried this:
FlexDockApplicationPageFactory pageFactory = (FlexDockApplicationPageFactory)...
Hi!
I'm new with SpringRCP... I'm trying to use a combobox in a form. This is the code:
List<Terminal> terminals = presentationModel.getTerminals();
ValueHolder holder = new...