hello everyone

I want to implement the data grid control in my jsp page.I hv searchd a lot in google but still yet i m not clear.can anybody give me some idea or suggestion how to implement it

Recommended Answers

All 6 Replies

It would be much of manual task, plus reinventing weal. You better look on some web frameworks, Wicket for example...

Hi GRID Control can be achieved in number of ways...
Following are easily configurable ways: -
1. Use jquery GRID Control
2. sencha extjs (very easy to configure)

Best Example is to refer the following
http://www.extjs.com/deploy/dev/examples/grid/array-grid.html

thanks but i don't know how to integrate jquery in my jsp page

Download required libraries and declare import of need it JavaScripts in head of JSP page. Example

Hi GRID Control can be achieved in number of ways...
Following are easily configurable ways: -
1. Use jquery GRID Control
2. sencha extjs (very easy to configure)

Best Example is to refer the following
http://www.extjs.com/deploy/dev/examples/grid/array-grid.html

Hi rakesh
i am using example of your given url but not getting any output.code is

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <script type="text/javascript" src="array-grid.js"></script>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
        <script type="text/javascript">
            $(document).ready(function(){
                $("button").click(function(){
                store.loadData(myData);
             });
});
</script>
    </head>
    <body>
        <button>Click me</button>
    </body>
</html>

please suggest

Download required libraries and declare import of need it JavaScripts in head of JSP page. Example

can you please give any example

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.