Problems implementing subrow in grid

Hello,

i have a problem implementing a subrow in a grid.

Following this documentation: dhtmlx.com/docs/products/dhtmlxG … brows.html

My implementation looks like:

Grid init


financeReportParameterGrid = myTabbar.tabs("a2").attachGrid();

var url = serverInfo.getBaseURL() + '?handler=financereportparameter&cmd=' +
commandUtil.getCMD_SELECT() + '&response_type=xml_list&finance_report_id=' + id;

financeReportParameterGrid.init();
financeReportParameterGrid.loadXML(url);

XML

echo '<?xml version="1.0" encoding="utf-8"?>'; echo '<rows>'; echo '<head>'; echo '<column width="*" type="ro" align="left" sort="str">Name</column>'; echo '<column width="*" type="sub_row" align="right" sort="na">Value</column>'; echo '</head>'; echo '<row>'; echo '<cell>150</cell>'; echo '<cell>25</cell>'; echo '</row>'; echo '</rows>';

Result: subrow is not displayed

Could you guys support me here?

Thanks

Br

//Oliver

Unfortunately the issue cannot be reproduced locally.
Please, note that the subrow column type is available in PRO version only.