This commit is contained in:
Socrates
2020-05-26 10:29:34 +02:00
commit 9ed0f2a056
1162 changed files with 162062 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<%
String tabObject = org.openxava.web.Collections.tabObject(idCollection);
org.openxava.tab.Tab tab = subview.getCollectionTab();
String tabPrefix = tabObject + "_";
tab.clearStyle();
int selectedRow = subview.getCollectionEditingRow();
if (selectedRow >= 0) {
String cssClass=selectedRow%2==0?style.getListPairSelected():style.getListOddSelected();
tab.setStyle(selectedRow, cssClass);
}
context.put(request, tabObject, tab);
// The list
%>
<jsp:include page="../list.jsp">
<jsp:param name="collection" value="<%=idCollection%>"/>
<jsp:param name="rowAction" value="<%=lineAction%>"/>
<jsp:param name="tabObject" value="<%=tabObject%>"/>
<jsp:param name="viewObject" value="<%=viewName%>"/>
</jsp:include>