|
View:
New views
7 Messages
—
Rating Filter:
Alert me
|
|
|
[Spring-JIRA] Created: (RCP-615) TabbedDialogPage, tab names mix up on validation state changeTabbedDialogPage, 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Updated: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] olorin updated RCP-615: ----------------------- Attachment: screenshot-1.jpg > 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Commented: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47241#action_47241 ] Geoffrey De Smet commented on RCP-615: -------------------------------------- Did you get this on trunk or on the latest release (1.1.0) or on an older version? There are some improvements for trunk for the 1.1.1-SNAPSHOT. Strange though that your validation icon is shown in the right side of the tab, normally it's a different icon on the left side. > 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Commented: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Commented: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47562#action_47562 ] olorin commented on RCP-615: ---------------------------- This problem occurs with JRE6u14 and higher. It does *not* occur with JRE6u12. > 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Commented: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47563#action_47563 ] olorin commented on RCP-615: ---------------------------- Problem resembles http://bugs.sun.com/view_bug.do?bug_id=6670274 > 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
|
|
[Spring-JIRA] Commented: (RCP-615) TabbedDialogPage, tab names mix up on validation state change[ https://jira.springsource.org/browse/RCP-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47564#action_47564 ] Benoit Xhenseval commented on RCP-615: -------------------------------------- Same problem here, I also confirm that it happened when running unde 1.6.0 update 14+ update 13 is ok. > 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 ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Springframework-rcp-dev mailing list Springframework-rcp-dev@... https://lists.sourceforge.net/lists/listinfo/springframework-rcp-dev |
| Free embeddable forum powered by Nabble | Forum Help |