On Mon, Jul 29, 2013 at 6:41 PM, Gustavo Daniel Soares Figueiredo <[email protected]> wrote: > In my projetc, we have to create a Combobox, that access a table in my > database, but i dont know how to start making it, any tip ?
Hi Gustavo, for that you will need to write a new XMLUI aspect. To learn what aspects are and where they belong in XMLUI, study this presentation: http://www.slideshare.net/tdonohue/making-dspace-xmlui-your-own For writing a new aspect from scratch, follow this howto: https://wiki.duraspace.org/display/DSPACE/Create%20a%20new%20aspect%20(Manakin) Here's an example of adding a combo box: https://github.com/DSpace/DSpace/blob/dspace-3.1/dspace-xmlui/src/main/java/org/dspace/app/xmlui/aspect/administrative/ControlPanel.java#L559 For there is nothing special to do for database access, just do what you would do in a regular Java application. Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette ------------------------------------------------------------------------------ Get your SQL database under version control now! Version control is standard for application code, but databases havent caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out. http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

