Skip to content
Snippets Groups Projects
Commit 6b9a472e authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

Keep track of the change....

parent 2a9bbf02
No related branches found
No related tags found
No related merge requests found
...@@ -2,17 +2,17 @@ ...@@ -2,17 +2,17 @@
0.3.y 0.3.y
- Developp the user documentation
- Add a new python tool to add a foreign columns in a grid - Add a new python tool to add a foreign columns in a grid
- Add a python tool to define grid filter and the corresponding js. - Add a python tool to define grid filter and the corresponding js.
- Add a tool to define combined fields
- Add a tool to customize the main viewport - Add a tool to customize the main viewport
- Develop grid plugin: double click, export its content as a CSV file,... - Develop grid plugin: double click, export its content as a CSV file,...
- Delegate the form validation to the javascript form - Delegate the form validation to the javascript form
- simplified the javascript by using the xtype for store (jsonstore) - Simplified the javascript by using the xtype for store (jsonstore)
- Generalize the use Ext.Direct for the database request - Generalize the use Ext.Direct for the database request
could we map the class of the web2py framework ? could we map the class of the web2py framework ?
- Use prism to provide the framework for a web application.
- How do we print table/report: via the browser or via a dedicated mechanism ?
$Id$ $Id$
\ No newline at end of file
No preview for this file type
...@@ -10,13 +10,13 @@ ...@@ -10,13 +10,13 @@
<li><h4>Define a foreign key in the database model</h4></li> <li><h4>Define a foreign key in the database model</h4></li>
<code> <code>
db.define_table('rpmCategories',<br> db.define_table('rpmCategories',<br>
SQLField('category', 'string', notnull=True, unique=True),<br> Field('category', 'string', notnull=True, unique=True),<br>
SQLField('note', 'text'))<br><br> Field('note', 'text'))<br><br>
db.define_table('rpms',<br> db.define_table('rpms',<br>
SQLField('rpm', 'string', notnull=True, unique=True),<br> Field('rpm', 'string', notnull=True, unique=True),<br>
SQLField('id_category', db.rpmCategories, notnull=True),<br> Field('id_category', db.rpmCategories, notnull=True),<br>
SQLField('note', 'text'))<br><br> Field('note', 'text'))<br><br>
db.rpms.id_category.requires = IS_IN_DB(db, 'rpmCategories.id', 'rpmCategories.category') db.rpms.id_category.requires = IS_IN_DB(db, 'rpmCategories.id', 'rpmCategories.category')
</code> </code>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment