[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47245#action_47245 ]
olorin commented on RCP-615:
----------------------------
This is version 1.0.0.
We did not migrate to 1.1 as development is almost finished.
>From the anouncements that the core was reorganised and
the formbuilder was replaced and possible new bugs
we were afraid that there would be a migration effort involved.
==================================================
BTW (unrelated i think) this test in
org.springframework.richclient.dialog.control.Tab seemed odd to me (without examining the context):
public void setTitle(String title) {
String old = this.title;
this.title = title;
if(old != null && !old.equals(title) || title != null) {
propertyChangeSupport.firePropertyChange(TITLE_PROPERTY, old, title);
}
}
I would have expected a test
if (title != null && !title.equals(old))
> TabbedDialogPage, tab names mix up on validation state change
> -------------------------------------------------------------
>
> Key: RCP-615
> URL: https://jira.springsource.org/browse/RCP-615
> Project: Spring Rich Client Project
> Issue Type: Bug
> Components: Core
> Affects Versions: 1.0.1
> Reporter: olorin
> Assignee: Lieven Doclo
> Priority: Minor
> Attachments: screenshot-1.jpg
>
>
> When the validation state changes on a tabbed dialog pane (red asterix added or removed from label),
> the old label title overwrites the label to the right.
> E.g. my initial labels
> *general | detail1 | detail2 | detail3
> after competing the fields on the general tab
> general | *general | detail2 | detail3
> after emptying mandatory field again
> *general | general | *general | detail3
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.springsource.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|