how to pass multiple parameter using displaytag -----------------------------------------------
Key: DISPL-549 URL: http://jira.codehaus.org/browse/DISPL-549 Project: DisplayTag Issue Type: Bug Components: Tag Library Affects Versions: 1.1.1 Reporter: sachin sharma Fix For: 1.1.1 My Table is <display:table name="sessionScope.testdata" export="true" id="row" class="dataTable" style="width:90%; margin-left:1%; "excludedParams="*" > <display:column title=" Invoice No" headerClass="sortable" property="invoiceNo" href="../order/ViewInvoiceForm.jsp" paramId="invoiceOrderId,sachin" paramProperty="invoiceOrderId,invoiceOrderId"/> <display:column title=" Invoice Date" sortable="true" headerClass="sortable" group="1" > <fmt:formatDate value="${row.invoiceDate}" pattern="dd/MM/yyyy"/> </display:column> <display:column title=" Order Date" href="../order/DisplayPODetail.jsp?orderId=${row.orderId}&returnStatus=1" sortable="true" > <fmt:formatDate value="${row.orderDate}" pattern="dd/MM/yyyy"/> </display:column> <display:column property="customerName" title=" Customer Name" sortable="true" /> <display:column property="address" title="address"/> <display:column property="location" title="Location" sortable="true" headerClass="sortable" /> <display:column title=" mobile"sortable="true" headerClass="sortable" > <a href="sampleJavaScriptFunction(<c:out value='${mobile}'/>>)">3434</a> </display:column> <display:column property="remarkForDispatchCategory" title="Remarks for Dispatch"/> <%if(isAllowDeliveryStatus){%> <display:column title=" EditCollection" headerClass="sortable" href="../order/ViewInvoiceForm.jsp?invoiceOrderId=${row.invoiceOrderId}&orderId=${row.orderId}&returnStatus=1&fromPage=ReportsFor&showPayment=add&preDetail=Y&multipleCollections=Y" media="html"> <%//<!--A HREF="javascript:sendToJob('///=domainMap/order/ViewInvoiceForm.jsp?invoiceOrderId=${row.invoiceOrderId}&orderId=${row.orderId}&returnStatus=1&fromPage=ReportsFor&showPayment=add&preDetail=Y&multipleCollections=Y')"> %> <c:out value="Edit Collecction"/> </display:column> <%}%> </display:table> My Question is how to pass multiple parameter in column url?I tried this by using script funtion.It Works perfect--- <display:column title=" mobile"sortable="true" headerClass="sortable" > <a href="sampleJavaScriptFunction(<c:out value='${mobile}'/>>)">3434</a> </display:column> But Problem with above that while importing it also shows <a href="sampleJavaScriptFunction(<c:out value='${mobile}'/>>)">3434</a> in csv file() in relative column value in place of only value 3434 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ displaytag-devel mailing list displaytag-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/displaytag-devel