Siebel Interactive Selling Transact Server Interface Reference > Working with Configurations > Modifying the Configuration List UI >

Default ConfigList JSP Page


Below is the complete code for the default ConfigList JSP page.

<!doctype html public "-//w3c/dtd HTML 4.0//en">
<html>
<head><title>Config List</title></head>

<%@ page
info="JSP test"
contentType="text/html"
%>

<!-- BEA WebLogic -->
<jsp:useBean id="ConfigList"
scope="page"
class="com.siebel.isscda.wl.transact.ConfigListBean">
<!-- BEA WebLogic -->

<!-- IBM WebSphere -->
<jsp:useBean id="ConfigList"
scope="page"
class="com.siebel.isscda.ws.transact.ConfigListBean">
<!-- BEA WebLogic -->

<% ConfigList.setSortField("DateCreated");
ConfigList.setSortOrder("Desc");
ConfigList.createList(session, request); %>

</jsp:useBean>
Saved configurations for <%= ConfigList.getUserId() %><br>

<table border=1>
<tr><th>Config ID</th><th>Name</th><th>Date Created</ th><th>Delete</th><th>See XML</th></tr>
<% while (ConfigList.nextConfig()) { %>
<tr>

<td><a href="<%= ConfigList.getRestoreURL() %>" target="_new"><%= ConfigList.getUniqueId() %></a></ td>
<td><%= ConfigList.getName() %></td>
<td><%=ConfigList.getDateCreated() %></td>
<td><a href="<%= ConfigList.getDeleteURL() %>">Delete</ a></ td><td><a href="<%= ConfigList.getExportURL() %>" target="_new">xml</a></td>
</tr>

<% } %>
</table>
</body>
</html>


 Siebel Interactive Selling Transact Server Interface Reference 
 Published: 18 April 2003