wiki:MolgenisFaq

Version 9 (modified by Morris Swertz, 15 years ago) (diff)

--

MOLGENIS FAQ

Here you can find answers to some of the most frequently asked questions about MOLGENIS. If you have a question not answered on this page, you can ask it on the MailingList. See the MolgenisSupport? page for more options on getting support and services for MOLGENIS.

I want to automatically select my plugin

Solution:

  1. Use the '_target' paramater, i.e.
    <input type="hidden" name="_target" value="name of the plugin"/>
    
  1. In the handleRequest change the selection of the containing menu
    //get the menu, either using getParent or using a get("name of menu")
    MenuScreen container = ((MenuScreen)getParent());
    //change select to current element
    container.setSelected(this.name);