Hi,
I need to insert my new nodes into a folder. Is it possible?
Thanks
Hi,
I need to insert my new nodes into a folder. Is it possible?
Thanks
This is done in the plugin.xml
If you open the file in the editor, there should be the following example inside
   <!-- This is an example for providing an own category   -->
      <extension
         point="org.knime.workbench.repository.categories">
      <category
            description="Category containing my nodes"
            icon="icons/default.png"
            level-id="myNodes"
            name="My nodes"
            path="/"/>
   </extension>
  
Thanks