Joined: Sun May 25, 2008 5:34 pm Posts: 95 Has thanked: 2 time Have thanks: 0 time
This code allow to make a scrollable HTML table , the basic idea the you determine the width and height of your table and pass them as a parameter ScrollableTable Javascript function , when the width and height are less than the required , the scrollable will appear , take in mind that you will send id of your table to the function which here is "myScrollTable" .You can change the rows background colors , by changing the CSS part in the start of the html file ,
Code:
background: #99FF99;
Here index.html :
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Scrollable HTML table</title> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="myscript.js"></script>
Joined: Sun Sep 20, 2009 10:21 am Posts: 1 Location: US Has thanked: 0 time Have thanks: 0 time
Scrollable HTML table JavaScript code can be used to convert tables in ordinary HTML into scrollable ones. No additional coding is necessary. All you need to do is put header rows (if you need them) in THEAD section, table body rows in TBODY section, footer rows (if you need them) in TFOOT section and give your table an ID field, include the webtoolkit.scrollabletable.js file and create ScrollableTable() object after each table.
Scrollable HTML table code tested in IE5.0+, FF1.5+. Source code for index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Scrollable HTML table</title> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <script type="text/javascript" src="webtoolkit.scrollabletable.js"></script>
Users browsing this forum: No registered users and 1 guest
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum