Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

view-ribbon-group - defines new ribbon's groupview.

Overview

This module is used for defining new ribbon's groupview. Please see also articles describing [window definition|QCDMESDOC:Window definition].

Module's schema is defined in [view.xsd|http://schema.qcadoo.org/modules/view.xsd].

Attributes

...

name

...

type

...

required

...

description

...

...

resource

...

Example

...

file

...

Code Block
languagexml
themeEclipse
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>
<plugin plugin="samplePlugin" version="1.0.0"&nbsp;
&nbsp; &nbsp; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&nbsp;
&nbsp; &nbsp; xmlns="http://schema.qcadoo.org/plugin"&nbsp;
&nbsp; &nbsp; xmlns:view="http://schema.qcadoo.org/modules/view"&nbsp;
&nbsp; &nbsp; xsi:schemaLocation="http://schema.qcadoo.org/plugin http://schema.qcadoo.org/plugin.xsd http://schema.qcadoo.org/modules/view http://schema.qcadoo.org/modules/view.xsd">
&nbsp; &nbsp; <view:view-ribbon-group resource="view/ribbon.xml" />
</plugin>

Excerpt
hiddentrue

view - defines new view.

Overview

This module is used for defining new view. Please see also articles describing [window definition|QCDMESDOC:Window definition].

Module's schema is defined in [view.xsd|http://schema.qcadoo.org/modules/view.xsd].

Attributes

|| name || type || required || description ||

...

yes

Path to the file containing new view definition.

...

Example

Please find below an example of plugin defining one vewview. Lines 8 contains a module which defines new view defined in file *src/main/resource/samplePlugin/view/view.xml*.

Code Block
languagexml
themeEclipse
linenumberstrue
<?xml version="1.0" encoding="UTF-8"?>

<plugin plugin="samplePlugin" version="1.0.0"&nbsp; 
  &nbsp; &nbsp; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&nbsp; 
  &nbsp; &nbsp; xmlns="http://schema.qcadoo.org/plugin"&nbsp; 
  &nbsp; &nbsp; xmlns:view="http://schema.qcadoo.org/modules/view"&nbsp; 
  &nbsp; &nbsp; xsi:schemaLocation="http://schema.qcadoo.org/plugin http://schema.qcadoo.org/plugin.xsd httpxsd http://schema.qcadoo.org/modules/view http://schema.qcadoo.org/modules/view.xsd">

  &nbsp; &nbsp; <view:view resource="view/view.xml" />

</plugin>