我正在尝试获取网格结构 该父级下的1个父级网格和2个子级(两个子级都应使用相同的标签)。
我找到了1个解决方案-但这是祖父母-亲子关系。 (其他下1格) https://searchcode.com/codesearch/view/4417536/
但是我需要1个父母-2个孩子(2个网格位于其他水平网格上)
我使用其他插件找到了解决方案,但是在Struts2中使用struts2-jquery-grid插件在Grid中找不到任何解决方案。 http://www.trirand.net/examples/grid/hierarchy/several_subgrids/default.aspx
我正在尝试这样做,但是我只能在父网格下看到1个子子网格。实际上,我需要在1个父对象的同一级别上显示2个子网格。这是我的问题。
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<%@ taglib prefix="sjg" uri="/struts-jquery-grid-tags"%>
<s:url id="ordersurl" action="json-orders" />
<s:url id="orderdetailsurl" action="json-orderdetails" />
<s:url id="customersurl" action="json-table" escapeAmp="false" />
<h2>Grid with 2 children Subgrid on the same Level</h2>
<sjg:grid id="customerstable" caption="Customers" dataType="json"
href="%{customersurl}" pager="true" gridModel="gridModel"
rowList="10,15,20" rowNum="15" viewrecords="true" altRows="true">
<sjg:grid id="orderstable" caption="Orders with Orderdetails Subgrid"
dataType="json" subGridUrl="%{ordersurl}" pager="true"
navigator="true" navigatorEdit="false" navigatorAdd="false"
navigatorView="true" navigatorDelete="false" gridModel="gridModel"
rowList="10,15,20" rowNum="15" viewrecords="true">
<sjg:gridColumn name="ordernumber" index="ordernumber" key="true"
title="Order" formatter="integer" sortable="true" search="true"
searchoptions="{sopt:['eq','ne','lt','gt']}" />
<sjg:gridColumn name="orderdate" index="orderdate" title="Order Date"
formatter="date" sortable="true" />
</sjg:grid>
<sjg:grid id="orderssubgridtable" subGridUrl="%{orderdetailsurl}"
gridModel="gridModel" rowNum="-1" footerrow="true"
userDataOnFooter="true">
<sjg:gridColumn name="productcode" key="true" title="Product Code"
width="300" hidden="true" />
</sjg:grid>
<sjg:gridColumn name="customernumber" index="customernumber" key="true"
title="ID" width="50" formatter="integer" />
<sjg:gridColumn name="customername" index="customername"
title="Company" width="300" />
</sjg:grid>