palette and list

2009-09-12 Thread rolfst
Hi is there a way to use a custom list with entities as a selection and a property from another domainobject to set. like a onetomany relation. sorry for my bad english its late. thanks rolf -- View this message in context: http://www.nabble.com/palette-and-list-tp25419024p25419024.html Sent

Re: palette and list solved

2009-09-13 Thread rolfst
As I said it was late. created a union of already assigned values and new values for encoder. rolfst wrote: > > Hi is there a way to use a custom list with entities as a selection and a > property from another domainobject to set. > like a onetomany relation. > > sorry

Palette and selection filtering

2009-09-17 Thread rolfst
Hi Iam trying to filter out the already selected entries from the available entries from a palette. but my page comes up with a nullpointerexception. When i do keep everything in the available selection list everything works fine. is there a way to resolve this? Thanks -- View this message in c

Re: Palette and selection filtering

2009-09-18 Thread rolfst
Thanks, stupid me. to many entries that look the same. Thiago H. de Paula Figueiredo wrote: > > Em Thu, 17 Sep 2009 09:42:52 -0300, rolfst escreveu: > >> Hi > > Hi! > >> Iam trying to filter out the already selected entries from the available >> entri

is it possilble to construct domain object w/o using default constructor?

2009-09-25 Thread rolfst
Hi s it possilble to construct a domain object w/o using default constructor or using a dto? or using @Inject because I dont have access to the domain object sources. so i cant use @inject and other wise i get an exception about not having an interface for java.lang.String thanks, rolfst

Re: is it possilble to construct domain object w/o using default constructor?

2009-09-25 Thread rolfst
Hi I am trying to use my domain model objects in a beaneditor. the backend is constructed and serviced by spring. Thiago H. de Paula Figueiredo wrote: > > Em Fri, 25 Sep 2009 05:22:42 -0300, rolfst escreveu: > >> Hi s it possilble to construct a domain object w/

Re: is it possilble to construct domain object w/o using default constructor?

2009-09-28 Thread rolfst
. because of this extra constructor. Thiago H. de Paula Figueiredo wrote: > > Em Fri, 25 Sep 2009 09:35:31 -0300, rolfst escreveu: > >> Hi I am trying to use my domain model objects in a beaneditor. >> the backend is constructed and serviced by spring. > > Just use the Fo

Re: [T5] combination of linksubmit and submit fails

2009-04-29 Thread rolfst
Hi, thanx for your response. The failure stated: object does not support this function. Apparently it was a browser issue using ids and functions of the same name, also did it have something to do with caching of my browser. it retained an element with id submit. The javascript function of the

Testify injection only works once per test

2009-07-26 Thread rolfst
Hi I am using Testify to inject a fake repository into my testng test but I come op to a problem. when i first access the fake repository it gets injected however the second time i access the repository I get a null pointer exception. Now comes another strange thing when i debug everything works

Custom validator for int constraint for a dynamic list

2009-07-27 Thread rolfst
Hi can someone help me on creating an int validator like in the wiki. However This validator must be used with an ajax loop on a custom component. So a message catalog file cannot really work because the number of text fields is not known beforehand. thanx Rolf -- View this message in context:

Re: Custom validator for int constraint for a dynamic list

2009-07-27 Thread rolfst
I got it I Used Void.class as its first parameter to its super() changed it to null did the trick rolfst wrote: > > Hi can someone help me on creating an int validator like in the wiki. > However This validator must be used with an ajax loop on a custom > component. > So a messa

Re: Testify injection only works once per test

2009-07-27 Thread rolfst
Hi Paul, I have this test method @Inject private TestPageResultRetriever retriever; @Inject private RBUTypeRepository repository; @Override protected void doSetUp() throws Exception { } @Test(groups = "rbudisplay")

Re: Testify injection only works once per test

2009-07-27 Thread rolfst
. thanks anyway. regards Rolf Paul Field wrote: > > rolfst wrote on 27/07/2009 13:26:23: > >> >>@Test(groups = "rbudisplay") >>public void test_rbuselection_fulltype() throws Exception >>{ > > Oooo... it might be something to do with grou