[ZPT] dynamic table
Graziella Toutoungis
graztoutoungis at yahoo.fr
Mon Feb 5 03:28:12 EST 2007
Hello,
I want to create a page template who provide a dynamic table,
in the first step my user can choose his table from a list (the first page template) when he validates his choice he can see another page template whith his table.
in the second step he can create his own table by selecting the rows and columns.
I create a script python for yeilding the column name of the original table in a list like getColumnName() =>[('id'),('title'),('address')]
and the data like getColumnData => [(1,), ('vincent ',), (1233,), (2,),
('nicolas ',), (2222,),
(3,), ('nani ',), (3333,),
(4,), ('roby ',), (4444,),
(5,), ('aaaa ',), (7777,), (6,),
('bbbb ',), (8888,), (7,),
('cccc ',), (9999,), (8,),
('dddd ',), (1414,), (9,),
('eeeee ',), (17484,), (10,),
('eeeee ',), (17484,), (11,),
('eeeee ',), (17484,), (12,)]
now in my the zpt
<tr>
<th></th>
<div tal:define="results context/columnName" tal:repeat="results python:here.getColumnName()">
<span tal:condition="results"></span>
<th><input type="checkbox" id="selectedColumn" /></th>
</div>
</tr>
<tr bgcolor="#ece9d8">
<th></th>
<th tal:repeat="col_name python:here.getColumnName()">
<span tal:replace="col_name"/>
</th>
</tr>
<tr align="right" bgcolor="#ffffff" tal:repeat="item batch" >
<td bgcolor="#ece9d8" length="0.5" ><input type="checkbox" id="selectedRow"/></td>
here i want to put the data
</td>
</tr>
My question how i can fill my grid table with the data (by using my script python).?
When the user select the rows and colums how i can obtain the cell choosed for create the new table?
thanks for all suggestions
G.
___________________________________________________________________________
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions !
Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses
http://fr.answers.yahoo.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.zope.org/pipermail/zpt/attachments/20070205/43624f5d/attachment.htm
More information about the ZPT
mailing list