Overview
This module is used for adding new column to existing grid.
Module's schema is defined in view.xsd.
Attributes
name |
type |
required |
description |
---|---|---|---|
plugin |
string |
yes |
Name of the plugin where the view belongs. |
view |
string |
yes |
Name of the view where the component belongs. |
component |
string |
yes |
Name of the component where the listener will be added to. |
node value |
string |
yes |
Definition of the hook. Please see an article describing defining hook using XML. |
Example
Please find below an example of plugin defining one additional column.
<?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-grid-column plugin="orders" view="ordersList" component="grid"> <view:column name="realizationTime" fields="realizationTime" orderable="true" searchable="false" width="30" link="false" /> </view:view-grid-column> </plugin>