  | Mailing List | | Home | | Forum Home | | JBoss - Java Application Server | | Struts - A MVC web framework | | Tomcat - JSP/Servlet container | | iText - An open source PDF Java Library | | JDOM - JDOM XML Parser | | J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition | | J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog | | Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology | | JSP - A mailing list about Java Server Pages specification and reference | |
Struts & Hibernate
|
|
|
  | | | Tabular Data Grid Editor in HTML | Tabular Data Grid Editor in HTML 2004-07-14 - By Sandeep Kachalia
Back Hi Jaise, I am not sure whether such editor exists to do this specific task. But you can create your own using DHTML and javascript. What you need to do is based on your data structure create dyanamically DIV node and append it to your HTML structure. Individual DIV node will represent the cell of the grid. Each DIV will also have a child node 'text'. The 'text' node will represent the data in the cell. Scrolling is a feature of DIV object. As fas as data edititing is concern you need to do separate efforts. 1. Need to identify the 'selected' cell(DIV). 2. Once you are able to identify the selected cell. You can very well replace the existing text node with new one(with changed data). 3. finally you can persist the data by reading the values of text nodes of complete HTML.
The complete exercise is compatibe to various browsers. I hope this will help you out.
Sandeep
Jaise George wrote:
>Hi, > >I know that this is not the right forum to post this message. But I am >deperately in need of help. > >I am looking for an open source tabulat data grid editor that is written >using plain HTML and Javascript. This should be able to load large >amount of data and should allow vertical and horizontal scrolling. It >should also allow editing the data that is laoded. > >I know that XML Data Island would serve my purpose, but it works with IE >only. Any other links please.. > >Thanks in advance. > >Jaise George > >=========================================================================== >To unsubscribe, send email to listserv@(protected) and include in the body >of the message "signoff J2EE-INTEREST". For general help, send email to >listserv@(protected) and include in the body of the message "help". > >
=========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help".
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859 (See http://ISO-8859.ora-code.com)-1"> <title></title> </head> <body text="#330099" bgcolor="#ffffff"> <font size="-1"><font face="Lucida Sans Unicode">Hi Jaise,<br> I am not sure whether such editor exists to do this specific task. But you can create your own using DHTML and javascript.<br> What you need to do is based on your data structure create dyanamically DIV node and append it to your HTML structure.<br> Individual DIV node will represent the cell of the grid. Each DIV will also have a child node 'text'. The 'text' node will represent <br> the data in the cell.<br> Scrolling is a feature of DIV object.<br> As fas as data edititing is concern you need to do separate efforts.<br> 1. Need to identify the 'selected' cell(DIV).<br> 2. Once you are able to identify the selected cell. You can very well replace the existing text node with new one(with changed data).<br> 3. finally you can persist the data by reading the values of text nodes of complete HTML.<br> <br> The complete exercise is compatibe to various browsers. I hope this will help you out.<br> <br> Sandeep<br> <br> </font></font><br> Jaise George wrote:<br> <blockquote type="cite" cite="mid3f5447cd0c8095aecee1e62fa47e013e40f4e07e@(protected)"> <pre wrap="">Hi,
I know that this is not the right forum to post this message. But I am deperately in need of help.
I am looking for an open source tabulat data grid editor that is written using plain HTML and Javascript. This should be able to load large amount of data and should allow vertical and horizontal scrolling. It should also allow editing the data that is laoded.
I know that XML Data Island would serve my purpose, but it works with IE only. Any other links please..
Thanks in advance.
Jaise George
=========================================================================== To unsubscribe, send email to <a class="moz-txt-link-abbreviated" href="mailto :listserv@(protected)">listserv@(protected)</a> and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to <a class="moz-txt-link-abbreviated" href="mailto:listserv@(protected)" >listserv@(protected)</a> and include in the body of the message "help". </pre> </blockquote> </body> </html> =========================================================================== To unsubscribe, send email to listserv@(protected) and include in the body of the message "signoff J2EE-INTEREST". For general help, send email to listserv@(protected) and include in the body of the message "help". <p>
|
|
 |