[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[4512] branches/1.3/UI/search_results.html
- Subject: SF.net SVN: ledger-smb:[4512] branches/1.3/UI/search_results.html
- From: ..hidden..
- Date: Tue, 20 Mar 2012 10:29:52 +0000
Revision: 4512
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4512&view=rev
Author: einhverfr
Date: 2012-03-20 10:29:51 +0000 (Tue, 20 Mar 2012)
Log Message:
-----------
First draft of search results template, for resolving the pricematrix missing feature
Added Paths:
-----------
branches/1.3/UI/search_results.html
Added: branches/1.3/UI/search_results.html
===================================================================
--- branches/1.3/UI/search_results.html (rev 0)
+++ branches/1.3/UI/search_results.html 2012-03-20 10:29:51 UTC (rev 4512)
@@ -0,0 +1,35 @@
+<?lsmb-
+INCLUDE 'ui-header.html';
+PROCESS 'elements.html';
+PROCESS 'dynatable.html';
+
+IF select_multi ;
+ COLTYPE = 'checkbox'
+ELSE
+ COLTYPE = 'radio'
+END;
+
+columns.unshift({
+ col_id = 'select',
+ name = '', # No label
+ type = COLTYPE
+});
+
+-?>
+<body>
+<form name="search" action="<?lsmb script ?>" method="post">
+<?lsmb-
+
+PROCESS dynatable tbody = { rows = rows };
+
+PROCESS button element_data = {
+ name = 'action'
+ text = text('Continue')
+ class = 'submit'
+ type = 'submit'
+}
+
+-?>
+</form>
+</body>
+</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.