TracNav
Table of Contents
Introduction
MOLGENIS application overview
- Browsing and editing
- CSV file loading
- Connecting to R
- Connecting to SOAP web services
- Connecting to REST web services using CURL
- Molgenis as a datasource for Galaxy
Generating your own applications
- Download and install development kit
- Modeling a new MOLGENIS
- Modeling an existing database
- molgenis.properties file
Adding plug-ins
Building on the MOLGENIS framework
MOLGENIS Data Modeling Language Reference
MOLGENIS User Interface Modeling Language Reference
MOLGENIS framework API
Frequently asked questions
- How to change molgenis url from /molgenis_distro to xyz
- How to change the MolgenisServlet, e.g. to add more services
- How to extend an existing database model
- Case sensitivity and issues between windows, linux and mac
- How to create a hyperlink from plugin to another form
- How to create a hyperlink from plugin to another form
- How to create a hyperlink from plugin to another form
- How to create a hyperlink from plugin to another form
<menu>
The menu element allows the design of a hierarchical user interface with a menu on the left of the user interface and/or in tabs for each contained subscreen (menu, form, plugin).
Usage example of the <menu> element:
<molgenis> <menu name="my_mainmenu"> <form name="myfirsttab" entity="an_entity1" /> <menu name="my_submenu"> <form name="mythirdtab" entity="an_entity2" /> <form name="myfourthab" entity="an_entity3" /> </menu> </menu> </molgenis>
Required attributes
- name="menuname": locally unique name for this screen element (within its container).
Optional attributes
- startswith="mysubelement": subscreen tab that is selected when menu is first shown (default: first subscreen).
- position="top_left|top_right|left": position where the menu is shown (default: top_left unless wrapped in a parent menu having other position).