I am trying to group the rows in a grid with the following code.Model holds the list of pojo classes.When I am trying to add the group under rows.Rows are getting populated but the group label is not showing.If I place the group label inside the template it is throwing the following error.
<grid id="returnEntries" mold="paging"
pageSize="5" width="100%" height="100%">
<columns>
<column width="12%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.productcode}"
width="100%"/>
</column>
<column width="10%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.productname}"
width="100%"/>
</column>
<column width="8%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.currency}"
width="100%"/>
</column>
<column width="8%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.itemprice}"
width="100%"/>
</column>
<column width="10%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.qtypending}" width="100%"
style="text-align: center;"/>
</column>
<column width="10%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.qtyrrefund}" width="100%"/>
</column>
<column width="12%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value="${labels.customersupportbackoffice.createreturnrequest.refundamount}"
width="100%"/>
</column>
<column width="18%" sclass="oms-widget-createreturnrequest-listbox-header">
<combobox id="globalReason"
placeholder="${labels.customersupportbackoffice.createreturnrequest.popup.placeholder.reason}"
readonly="true"/>
</column>
<column width="20%" sclass="oms-widget-createreturnrequest-listbox-header">
<textbox id="globalComment" maxlength="255" width="97%" style="margin-bottom:4px"
placeholder="${labels.customersupportbackoffice.createreturnrequest.popup.placeholder.comment}"/>
</column>
<column width="8%" sclass="oms-widget-createreturnrequest-listbox-header">
<label value=""
width="100%"/>
</column>
</columns>
<rows>
<group label="refund" />
<template name="model">
<row>
<!-- <checkbox style="margin-left: 3px;"/> -->
<label value="${each.refundEntry.orderEntry.product.code}" width="100%"/>
<label value="${each.refundEntry.orderEntry.product.name}" width="100%"/>
<label value="${each.refundEntry.orderEntry.order.currency.isocode}" width="100%"
style="text-align:center;"/>
<label value="${each.refundEntry.orderEntry.basePrice}" width="100%" style="text-align:right;"/>
<label value="${each.returnableQuantity}" width="100%"
style="text-align:center;"/>
<intbox name="quantityToRefundBox" value="${each.quantityToRefund}" width="50%" style="margin-left: 25%;text-align: center;"
constraint="no empty,no negative: Quantity Must be Greater Than Zero" />
<doublebox value="${each.refundEntry.amount}" style="margin-left: 10%;text-align:right;" format="0.00"
constraint="no empty,no negative: Quantity Must be Greater Than Zero"/>
<combobox xmlns:w="client" w:onSelect="CockpitNG.sendEvent(this.uuid,'onCustomChange',this._value)"
model="${each.reasonsModel}" style="padding-right:4px;padding-left:4px;"
placeholder="${labels.customersupportbackoffice.createreturnrequest.popup.placeholder.reason}"
readonly="true">
<template name="model">
<comboitem label="${each}"/>
</template>
</combobox>
<textbox value="${each.refundEntryComment}" maxlength="255" width="93%" style="margin-left: 4px;"
placeholder="${labels.customersupportbackoffice.createreturnrequest.popup.placeholder.comment}"/>
<button width="100%"
label="Return"
sclass="oms-widget-createreturnrequest-configuration-button oms-widget-createreturnrequest-configuration-save-button"/>
</row>
</template>
</rows>
</grid>
Model have the list of pojo objects.When I try to access the page. It is giving the below error.
ERROR [hybrisHTTP25] [UiEngineImpl]
org.zkoss.zk.ui.UiException: The model template must have exactly one
row, not 2
Any inputs?
If you take a look at this example : https://www.zkoss.org/zkdemo/grid/grouping
you will notice the following setup :
<rows>
<group label="Dell" />
<row>
<label value="Dell E4500 2.2GHz" style="padding-left:15px"/>
<label value="Intel Core 2 Duo" />
<label value="4GB RAM" />
<label value="$261.00" style="color:green" />
<label value="500GB" />
</row>
<group label="Compaq" />
<row>
<label value="Compaq SR5113WM" style="padding-left:15px" />
<label value="Intel Core Duo" />
<label value="2GB RAM" />
<label value="$279.00" style="color:green" />
<label value="160GB" />
</row>
Now, the template tag with MVVM is like this :
<template name="model" >
<row>
<label value="@bind(forEachStatus.index)" />
<label value="@bind(each.name)" />
</row>
</template>
So, the <rows>
is replaced by the <template>
.
Setting it in the <template>
resuls in more then 1 grouping.
Setting it outside the <template>
, it's rendered above the <rows>
.
So the only solution is doing a little like this :
<template name="model">
<zk if="${forEachStatus.index == 0}">
<group label="refund" />
</zk>
<row if ="${forEachStatus.index != 0}">
<cell>
<label value="${forEachStatus.index}" />
</cell>
<cell>
<label value="${each}" />
</cell>
</row>
</template>
And don't forget, at your first line you need a null value, because your first row will not be rendered.
The reason is that if you render both in the template, you will have an error saying you can't add 2 rows in a template.
Hope this helps.