Call jsp:DataTable with jsp:param?
Hi,
I want to customize the DataTableComponent.jsp page to render the rowset of a ViewObject without some specified columns. jsp:AttributeIterate provides the perfect attribute 'hideattributes'. I have only to set the value of that attribute.
My question is: How can I use the DataTable Tag to call my customized DataTableComponent_hideAttr.jsp?
My hack looks like that:
<%
RequestParameters rp= HtmlServices.getRequestParameters(pageContext);
rp.addParameter("hideattributes", "Deptno1, Loc");
%>
<jbo:DataTable datasource="ds" relativeUrlPath="DataTableComponent_hideAttr.jsp" />
It is very inconveniently to do it like that.
Unfortunately, jsp:param does not work:
<jbo:DataTable datasource="ds" relativeUrlPath="DataTableComponent_hideAttr.jsp" >
<jsp:param name="hideattributes" value="Deptno1" />
<jbo:DataTable>
Do you have another solution?
Please post your comments.
Thanx,
Markus