Overview
This module is used for defining new ribbon's group. 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 | file | yes | Path to the file containing new ribbon's group definition. |
Example
Please find below an example of plugin defining one ribbon's group. Lines 8 contains a module which defines new ribbon's group defined in file *src/main/resource/samplePlugin/view/ribbon.xml*.
<?xml version="1.0" encoding="UTF-8"?> <plugin plugin="samplePlugin" version="1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schema.qcadoo.org/plugin" xmlns:view="http://schema.qcadoo.org/modules/view" 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"> <view:view-ribbon-group resource="view/ribbon.xml" /> </plugin>
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 ||
| resource | file | yes | Path to the file containing new view definition. |
Example
Please find below an example of plugin defining one vew. Lines 8 contains a module which defines new view defined in file *src/main/resource/samplePlugin/view/view.xml*.
<?xml version="1.0" encoding="UTF-8"?> <plugin plugin="samplePlugin" version="1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schema.qcadoo.org/plugin" xmlns:view="http://schema.qcadoo.org/modules/view" 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"> <view:view resource="view/view.xml" /> </plugin>