我在我们的网络应用中使用显示器。 我成功地出口了显示标记显示的数据,以挖掘。
问题在于,我也希望把头盔和数据浏览风格和 c列入出口前线。
e.g. Header row is bold with gray background and columns in data rows are colored depending on the value.
但是,这并没有被出口到外部。
<><><><>>>
Below is the display tag code in my JSP. The list is shown properly with all the css applied to headers and data rows properly.
我还可将数据输出到前线。
<display:table name="userList" pagesize="20" class="listingTable" keepStatus="true"
cellpadding="0px" cellspacing="0px" id="user" export= true requestURI="">
<display:setProperty name="export.decorated" value="true" />
<display:setProperty name="export.excel.filename" value="User List.xls" />
<display:column titleKey="user.firstname" property="firstname"></display:column>
<display:column titleKey="user.lastname" property="lastname"></display:column>
<display:column titleKey="user.email" property="email"></display:column>
<display:setProperty name="paging.banner.item_name" value="User" />
<display:setProperty name="paging.banner.items_name" value="Users" />
我正在使用缺省示意图,稍作改动。
请提供帮助。