|
From: Ryan S. (JIRA) <no...@at...> - 2007-07-20 14:40:58
|
[ http://opensource.atlassian.com/projects/spring/browse/RCP-406?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_24915 ]
Ryan Sonnek commented on RCP-406:
---------------------------------
It's been almost a year since this was opened, and when I ran into these issues, I basically hopped off of the spring RCP bandwagon. I haven't worked on it since.
If spring-rcp supports my usecase (using whatever code solution), that's great. my current code is here, but my project is opensource if there's anything interesting for you:
https://shard.dev.java.net/source/browse/shard/shard-minotaur/src/main/java/com/codecrate/shard/ui/
{code}
public void addPages() {
addPage(new FormBackedWizardPage(new AbilityScoreForm(getWizardForm().getFormModel())));
addPage(new FormBackedWizardPage(new RaceForm(getWizardForm().getFormModel(), raceDao, alignmentDao)));
addPage(new FormBackedWizardPage(new BioForm(getWizardForm().getFormModel())));
}
{code}
Feel free to take this usecase and run with it. I won't be working with spring-rcp to test any changes to the API.
> Wizard validation fires before reaching step
> --------------------------------------------
>
> Key: RCP-406
> URL: http://opensource.atlassian.com/projects/spring/browse/RCP-406
> Project: Spring Framework Rich Client Project
> Issue Type: Bug
> Components: Application Framework
> Affects Versions: 0.1.0, 0.2.0, 0.2.1
> Reporter: Ryan Sonnek
> Assignee: Jan Hoskens
> Priority: Critical
> Fix For: 0.3.0
>
>
> Consider this simple scenerio:
> 1. MyObject has two properties, firstName and lastName.
> 2. register "required" validator for both properties.
> 3. for some reason, i built a wizard where the firstName and lastName are on two different steps of the wizard.
> 4. When launching the wizard, I'm unable to get past the first step because it says one of the properties is required.
> This is wrong because I haven't yet got to that step in the wizard to fill in that property.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|