![]() |
Desktop Development »
Grid & Data Controls »
Grid controls
Intermediate
Data Grid for JSPBy Prasad KhandekarAn Asp.Net style grid control for JSP with ability to fetch data from java.sql.Connection or java.util.List or java.sql.ResultSet |
Java, Java, Win2K, WinXP, Win2003, Visual Studio, IE 6.0, IE 5.5, Architect, Dev
|
||||||||||
|
Advanced Search |
|
|
|
||||||||||||||||

This article presents a Grid control very similar to the one found in ASP.NET, but for JSP pages. Although a data grid can be easily rendered using JSTL for loop tag, it tends to clutter the code and hence debugging can become very difficult. The control presented in this article makes coding such grids a breeze and also it helps one to keep the code clean.
At present the control implements following things.
Apart from this it also allows one to specify column names to be used while constructing the HREF element of the hyperlink. This reference then at runtime automatically gets substituted by the column value. For example the following code snippet
<grd:imagecolumn headerText="" width="5" HAlign="center" imageSrc="images/Edit.gif"
linkUrl="javascript:doEdit('{CLICORPORATION}', '{CLICLIENT}')" imageBorder="0"
imageWidth="16" imageHeight="16" alterText="Click to edit"></grd:imagecolumn>
results in following code to be outputted to the browser <td WIDTH="5%" ALIGN="center">
<a HREF="javascript:doEdit('TATA', 'TELCO')">
<img SRC="images/Edit.gif" BORDER=0 WIDTH=16 HEIGHT=16 ALT="Click to edit">
</a>
</td>
The DBGrid control consists of following sub controls (classes).
gridpager - This control is responsible for rendering the pager control. This control has following attributes to customize the images displayed for navigation. All these attributes are mandetory attributes.
imgFirst - Custom image to be displayed for navigate to first page action.
imgPrevious - Custom image to be displayed for navigate to previous page action.
imgNext - Custom image to be displayed for navigate to next page action.
imgLast - Custom image to be displayed for navigate to last page action. gridsorter - This control is responsible for providing the sort support. The most important and required attributes for this control are:
sortColumn - The name of the column to be used while constructing ORDER BY clause.
sortAscending - The boolean value indicating whether to sort in ascending order or descending order. Apart from above two attributes this control has following two optional attributes to customize the images that appear in the column header to indicate the current sort order. If not specified the control assumes that ImgAsc.gif and ImgDesc.gif are present in the images folder.
imageAscending - Image to be displayed in header of the associated column when the data issorted in ascending order.
imageDescending - Image to be displayed in header of the associated column when the data is sorted in descending order. textColumn - This control is responsible for rendering the text column. The control has following special attributes to control the apperance of the rendered text.
maxLength - Controls the number of character to be outputted. dateColumn - This control is responsible for rendering the date time values. The control has following special attributes to control the apperance of the rendered text.
dataFormat - The format string as defined in java.text.DateFormat numberColumn - This control is responsible for rendering the numeric values. The control has following special attributes to control the apperance of the rendered text.
dataFormat - The format string as defined in java.text.DecimalFormat anchorColumn - This control is responsible for rendering the hyperlinks. This control also supports value substitution as explained in previous section. The control has following special attributes to control the apperance and behavior of the hyperlink.
linkText - A fixed string to be used to render the hyperlink. Alternatively one can also specify the column value to be used using dataField attribute
linkUrl - The url to be invoked when this link is clicked. This can also be a javascript function.
target - The name of the window or frame in which the referenced url is to be opened. imageColumn - This control is responsible for rendering the hyperlinked image. This control also supports value substitution as explained in previous section. The control has following special attributes to control the apperance and behavior of the hyperlink.
imageSrc - The image to be displayed.
imageWidth - The width of the image in pixels.
imageHeight - The height of the image in pixels.
imageBorder - The width of the image border in pixels.
alterText - The tooltip text to be displayed.
linkUrl - The url to be invoked when this link is clicked. This can also be a javascript function.
target - The name of the window or frame in which the referenced url is to be opened. rownumColumn - This control is responsible for numbering the rows displayed in the gird.
decodeColumn - This control is responsible for decoding the column values and display the decoded text. The control has following special attributes to control the decoding.
decodeValues - A string containing values to be decoded seperated by the delimeter specified using valueSeperator attribute.
displayValues - A string containing values to be displayed seperated by the delimeter specified using valueSeperator attribute.
valueSeperator - The value delimeter. The DBGrid control it self has following special properties.
dataSource - Allows one to specify the java.sql.Connection object to be used to fetch the values from database or a java.util.List.
dataMember - The SQL to be used to retrieve the required data. The SQL should not contain the ORDER BY clause. If you are specifying java.util.List for dataSource then this can be left blank.
pageSize - The number of rows to be displayed in a page.
currentPage - The page number to be displayed. following code snippet shows the DBGrid control usage. The same source can also found in the demo application.
<%@ taglib uri="/WEB-INF/tags/datagrid.tld" prefix="grd" %>
<%@ page import="java.sql.Connection" %>
<%@ page import="java.sql.DriverManager" %>
<%@ page import="java.sql.SQLException" %>
<%@ page import="com.freeware.gridtag.*" %>
<%
int intCurr = 1;
int intSortOrd = 0;
String strTmp = null;
String strSQL = null;
String strSortCol = null;
String strSortOrd = "ASC";
boolean blnSortAsc = true;
strSQL = "SELECT CLICORPORATION, CLICLIENT, CLIDESCRIPTION, " +
"CLIENABLED, CLIUPDSTAMP FROM CLIENTMASTER ";
Connection objCnn = null;
Class objDrvCls = null;
objDrvCls = Class.forName("oracle.jdbc.driver.OracleDriver");
objCnn = DriverManager.getConnection("jdbc:oracle:thin:@Host:port:sid",
"cashincpri", "cashincpri");
if (objDrvCls != null) objDrvCls = null;
strTmp = request.getParameter("txtCurr");
try
{
if (strTmp != null)
intCurr = Integer.parseInt(strTmp);
}
catch (NumberFormatException NFEx)
{
}
strSortCol = request.getParameter("txtSortCol");
strSortOrd = request.getParameter("txtSortAsc");
if (strSortCol == null) strSortCol = "CLICLIENT";
if (strSortOrd == null) strSortOrd = "ASC";
blnSortAsc = (strSortOrd.equals("ASC"));
%>
<html>
<head>
<title>Grid Tag Demonstration</title>
<link REL="StyleSheet" HREF="css/GridStyle.css">
<script LANGUAGE="javascript">
function doNavigate(pstrWhere, pintTot)
{
var strTmp;
var intPg;
strTmp = document.frmMain.txtCurr.value;
intPg = parseInt(strTmp);
if (isNaN(intPg)) intPg = 1;
if ((pstrWhere == 'F' || pstrWhere == 'P') && intPg == 1)
{
alert("You are already viewing first page!");
return;
}
else if ((pstrWhere == 'N' || pstrWhere == 'L') && intPg == pintTot)
{
alert("You are already viewing last page!");
return;
}
if (pstrWhere == 'F')
intPg = 1;
else if (pstrWhere == 'P')
intPg = intPg - 1;
else if (pstrWhere == 'N')
intPg = intPg + 1;
else if (pstrWhere == 'L')
intPg = pintTot;
if (intPg < 1) intPg = 1;
if (intPg > pintTot) intPg = pintTot;
document.frmMain.txtCurr.value = intPg;
document.frmMain.submit();
}
function doSort(pstrFld, pstrOrd)
{
document.frmMain.txtSortCol.value = pstrFld;
document.frmMain.txtSortAsc.value = pstrOrd;
document.frmMain.submit();
}
</script>
</head>
<body>
<h2>Grid Example</h2>
<form NAME="frmMain" METHOD="post">
<grd:dbgrid id="tblStat" name="tblStat" width="100" pageSize="10"
currentPage="<%=intCurr%>" border="0" cellSpacing="1" cellPadding="2"
dataMember="<%=strSQL%>" dataSource="<%=objCnn%>" cssClass="gridTable">
<grd:gridpager imgFirst="images/First.gif" imgPrevious="images/Previous.gif"
imgNext="images/Next.gif" imgLast="images/Last.gif"/>
<grd:gridsorter sortColumn="<%=strSortCol%>" sortAscending="<%=blnSortAsc%>"/>
<grd:rownumcolumn headerText="#" width="5" HAlign="right"/>
<grd:imagecolumn headerText="" width="5" HAlign="center"
imageSrc="images/Edit.gif"
linkUrl="javascript:doEdit('{CLICORPORATION}', '{CLICLIENT}')"
imageBorder="0" imageWidth="16" imageHeight="16"
alterText="Click to edit"/>
<grd:textcolumn dataField="CLICLIENT" headerText="Client"
width="10" sortable="true"/>
<grd:textcolumn dataField="CLIDESCRIPTION" headerText="Description"
width="50" sortable="true"/>
<grd:decodecolumn dataField="CLIENABLED" headerText="Enabled" width="10"
decodeValues="Y,N" displayValues="Yes,No" valueSeperator=","/>
<grd:datecolumn dataField="CLIUPDSTAMP" headerText="Last Updated"
dataFormat="dd/MM/yyyy HH:mm:ss" width="20"/>
</grd:dbgrid>
<input TYPE="hidden" NAME="txtCurr" VALUE="<%=intCurr%>">
<input TYPE="hidden" NAME="txtSortCol" VALUE="<%=strSortCol%>">
<input TYPE="hidden" NAME="txtSortAsc" VALUE="<%=strSortOrd%>">
</form>
</body>
</html>
<%
try
{
if (objCnn != null)
objCnn.close();
}
catch (SQLException SQLExIgnore)
{
}
if (objCnn != null) objCnn = null;
%>
The attached demo zip file also contains the ddl and dml which you can directly use to create the necessary table and populate the test data. I have tested this control using oracle database and the jdbc thin driver. For other databases you may have to change the dml.
sourceSQL to dataMember and connection to dataSource. Updated sample application to demonstrate the same.ResultSet and RowSet. Added new sample RawJDBCGrid.jsp page to demonstrate this. While supplying these types of object as dataSource care must be taken to make this ResultSet SCROLLABLE (ie. ResultSet.TYPE_SCROLL_INSENSITIVE).
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 21 Jul 2006 Editor: |
Copyright 2004 by Prasad Khandekar Everything else Copyright © CodeProject, 1999-2009 Web20 | Advertise on the Code Project |