Any idea why I am getting "Bean context must contain at least one bean of type org.acegisecurity.util.FilterChainProxy"? I am using latest Spring and Acegi versions.
I do have
<bean...
Type: Posts; User: Jurijus Jarmakas; Keyword(s):
Any idea why I am getting "Bean context must contain at least one bean of type org.acegisecurity.util.FilterChainProxy"? I am using latest Spring and Acegi versions.
I do have
<bean...
sorry, but my debugging shows that it is getting dirty. Put break point into "protected void updateSelectionHolderFromList(..." and see how many times it is called and WHEN?
protected...
it happens upon initialization of the component at the last line of code "selectedItemsHolder.setValue(newSelection);", see below
protected void updateSelectionHolderFromList(final...
I see some dirtiness issues.
if selected list displays initial values the form gets Dirty, it should not be.
The form should become dirty when user added or removed values.
Thank you for your...
Oliver Hutchison you are the man, thank you for recent updates !!!
Thanks for you help Gustavo!
Did any body try to get Principal (user name) on the server side? I am getting Context null.
I want to know what was the design idea: should client pass to the server user name and password on each...
So I guess the problem with the SpringRCP petclinic sample app is that client not passing user and password on every request? (ContextHolder.getContext() is empty on server side)
And by the way I...
Should user name and password be passed on every request from the client, if yes, what about session id, could session id be related to client's passed credentials upon login? I noticed that user and...
Hello,
I am trying to get principal on the server side of Spring RC petclinic, but ContextHolder.getContext() is null.
...
ok, problem solved. I had to use CloseAction.DISPOSE for my dialogs.
Cool 8)
Did anybody have memory problems with SpringRC?
By opening and closing dialog approximatelly 20 times I am getting
java.lang.OutOfMemoryError: Java heap space
The dialog has quite a few...
Why not to use Spring's utility class which makes a copy of a bean. You would create copy of the bean before you open a dialog and you would edit the copy, if user cancels the form just forget about...
Anybody knows about any open source swing spreadsheet components with are build for scheduling? (tables which grow in 2 dimensions)
Thank you
In the JCalendar example http://opensource.atlassian.com/confluence/spring/display/RCP/DateChooser+Integration should "supportsCustomEditor" return false?
Currently it is
public boolean...
any updates on that?
Thanks
I think I will go with hashing. First I will calculate the bean's hash before updates using reflection, and calculate it after updates to see if it has changed. I think it will require less...
I need to track if bean has been updated on UI. Is there a cool "Spring way" to do it. I need to create interceptor which would track property change on a bean and set a dirty flag on the bean.
Thank you for your help, I appreciate it.
http://forum.springframework.org/showthread.php?t=12538
Hi, is there anything in springRC which handles displaying validation messages from the server?
For example ... on form submit I need to check that person with the same name does not exist in the...
if you look into source of ComboBoxAutoCompletion you will see that it is based on http://www.orbital-computer.de/JComboBox/ . I did not succseed in updating the list of values in combobox which uses...
How can I notify a view that it needs to be refreshed. I am calling Application.instance().getAciveWindow().getPage().showView("myView") it constructs the view object on the first call, is there a...
Hi, just wated find out what would be the best way to use spring jdbc classes for dynamic searches. The sql is not known at the program's start, the number of parameters are changing. Should I...
Did anybody try to update selectableItemsHolder for combobox to which ComboBoxAutoCompleteion was applied? Looks like Map, which is created in fillItem2StringMap, needs to be updated.