You're welcome and thanks for sharing your code. I briefly looked at it and two things caught my eyes: - you can combine these two queries [1] into one by passing the boolean as a parameter; - you can combine these four queries into one by putting it on the supertype (Tarjeta.java) and again using a parameter.
Cheers, Jeroen [1] https://github.com/TesisTarjetasMejorar/TarjetasISIS/blob/master/dom/src/main/java/dominio/dom/tarjeta/TarjetaHSES.java#L12-L13 [2] https://github.com/TesisTarjetasMejorar/TarjetasISIS/blob/master/dom/src/main/java/dominio/dom/consulta/Consulta.java#L28-L33 On 7 July 2015 at 23:33, nicolas cuevas <[email protected]> wrote: > Hi Jeroen, > > Thank you very much for your help! bounded was just what I was looking > for, works wonders . I climbed the changes to github , in case you > would like to see how it works! > > Cheers, > > Nicolas > > https://github.com/TesisTarjetasMejorar/TarjetasISIS > > 2015-07-07 17:08 GMT-03:00 Jeroen van der Wal <[email protected]>: > > Hi Nicolas, > > > > Thank you for your interest in Apache Isis and Estatio. > > > > There are two ways to bring up a dropdown with selectable items: you can > > tell your domain it's bounded (eg limited to a reasonable size) [1] or > you > > can implement an autocomplete [2]. > > > > More than happy to watch your code so feel free to leave a link to your > > repo. > > > > Cheers, > > > > Jeroen > > > > > > [1] > > > http://isis.apache.org/guides/rg.html#_rg_annotations_manpage-DomainObject_bounded > > [2] http://isis.apache.org/guides/ug.html#3.1.14.-add-pet’s-owner > > > > > > On 7 July 2015 at 15:59, nicolas cuevas <[email protected]> wrote: > > > >> Hello, Good day !, my name is Nicolas Cuevas. I'm having problems > >> uploading data , sought from a database , in the example of " estatio > >> -master " , a property is created and a country is added, it searches a > >> list of countries which can be added. Would need to know how I can do > that, > >> I try to follow the code and apply it in my project but could not. From > >> already thank you very much. If you are interested can view the project > on > >> github , I leave the link for the repository below. Greetings and good > >> luck. > >> >
