954,600 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Grid Control in jsp

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

manish250
Junior Poster in Training
88 posts since Aug 2008
Reputation Points: 10
Solved Threads: 1
 

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

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
 

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

rakesh4java
Newbie Poster
10 posts since Dec 2010
Reputation Points: 10
Solved Threads: 0
 

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

manish250
Junior Poster in Training
88 posts since Aug 2008
Reputation Points: 10
Solved Threads: 1
 

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

peter_budo
Code tags enforcer
Moderator
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 902
 

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

manish250
Junior Poster in Training
88 posts since Aug 2008
Reputation Points: 10
Solved Threads: 1
 
Download required libraries and declare import of need it JavaScripts in head of JSP page. Example

can you please give any example

manish250
Junior Poster in Training
88 posts since Aug 2008
Reputation Points: 10
Solved Threads: 1
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: