Skip to content

Nav

Warning

Deprecated

Examples

Auto Navigation Item to SRS or Command

Navigation item to SRS: If we place nav in the opts at the SRS level, a link is added without execution.

  • If the path is /srs/test/123!erewrer/, the numbers up to ! are removed and used only for sorting.
XML
1
2
3
4
5
<srs label="Hello World" opts="uinav">
  <def>
    <itm model="command">select 'Hello World'</itm>
  </def>
</srs>
  • Navigation item to command:
  • If we place nav in the opts at the SRS/command level, a link is added with execution.
  • If the path is /srs/test/123!erewrer/, the numbers up to ! are removed and used only for sorting.
XML
1
2
3
4
5
<srs label="Hello World">
  <def>
    <itm model="command" opts="uinav">select 'Hello World'</itm>
  </def>
</srs>

Item with model="nav"

XML
1
2
3
4
5
<srs label="Hello World">
  <def>
    <itm model="nav" link="/search?param1=2&amp;param2=2" label="Search label" name="Search2">/menu/submenu</itm>
  </def>
</srs>