Revision: 1733
          http://svn.sourceforge.net/vexi/?rev=1733&view=rev
Author:   clrg
Date:     2007-03-15 10:54:02 -0700 (Thu, 15 Mar 2007)

Log Message:
-----------
Add basic table demo (will improve it later)

Modified Paths:
--------------
    widgets/trunk/org.vexi.demo/org/vexi/demo/demoTabs.t

Added Paths:
-----------
    widgets/trunk/org.vexi.demo/org/vexi/demo/table.t

Modified: widgets/trunk/org.vexi.demo/org/vexi/demo/demoTabs.t
===================================================================
--- widgets/trunk/org.vexi.demo/org/vexi/demo/demoTabs.t        2007-03-15 
17:53:14 UTC (rev 1732)
+++ widgets/trunk/org.vexi.demo/org/vexi/demo/demoTabs.t        2007-03-15 
17:54:02 UTC (rev 1733)
@@ -11,8 +11,8 @@
         
         // load the rest on-request to boost startup speed
         <util:lazyload src=".other" tabtext="Misc Widgets" />
-        <util:lazyload src=".scrollpane" tabtext="Scrollpane" />
         <util:lazyload src=".splitpane" tabtext="Splitpane" />
+        <util:lazyload src=".table" tabtext="Table" />
         <util:lazyload src=".text" tabtext="Text" />
         
         thisbox.openTab = function(tabtext)

Added: widgets/trunk/org.vexi.demo/org/vexi/demo/table.t
===================================================================
--- widgets/trunk/org.vexi.demo/org/vexi/demo/table.t                           
(rev 0)
+++ widgets/trunk/org.vexi.demo/org/vexi/demo/table.t   2007-03-15 17:54:02 UTC 
(rev 1733)
@@ -0,0 +1,57 @@
+<!-- Copyright 2006 - see COPYING for details [LGPL] -->
+
+<vexi xmlns="vexi.widget" xmlns:ui="vexi://ui">
+    <ui:box>
+        <bevel form="down">
+            <table id="table">
+                <head>
+                    <column text="First Name" />
+                    <column text="Surname" />
+                    <column text="Location" />
+                </head>
+                <body id="body">
+                    <row>
+                        <cell text="Charles" />
+                        <cell text="Goodwin" />
+                        <cell text="United Kingdom" />
+                    </row>
+                    <row>
+                        <cell text="Michael" />
+                        <cell text="Goodwin" />
+                        <cell text="United Kingdom" />
+                    </row>
+                    <row>
+                        <cell text="Adam" />
+                        <cell text="Megacz" />
+                        <cell text="United States" />
+                    </row>
+                    <row>
+                        <cell text="Brian" />
+                        <cell text="Alliet" />
+                        <cell text="United States" />
+                    </row>
+                    <row>
+                        <cell text="Tupshin" />
+                        <cell text="Harper" />
+                        <cell text="United States" />
+                    </row>
+                    <row>
+                        <cell text="David" />
+                        <cell text="Crawshaw" />
+                        <cell text="Australia" />
+                    </row>
+                    <row>
+                        <cell text="Jeff" />
+                        <cell text="Buhrt" />
+                        <cell text="United States" />
+                    </row>
+                    <row>
+                        <cell text="Adam" />
+                        <cell text="Andrews" />
+                        <cell text="United States" />
+                    </row>
+                </body>
+            </table>
+        </bevel>
+    </ui:box>
+</vexi>
\ No newline at end of file


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to