Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
plugin_dbui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2pext
plugin_dbui
Commits
6b9a472e
Commit
6b9a472e
authored
14 years ago
by
Renaud Le Gac
Browse files
Options
Downloads
Patches
Plain Diff
Keep track of the change....
parent
2a9bbf02
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
static/plugin_dbui/TODO
+4
-4
4 additions, 4 deletions
static/plugin_dbui/TODO
static/plugin_dbui/docs/2_customize.odt
+0
-0
0 additions, 0 deletions
static/plugin_dbui/docs/2_customize.odt
static/plugin_dbui/docs/index.html
+5
-5
5 additions, 5 deletions
static/plugin_dbui/docs/index.html
with
9 additions
and
9 deletions
static/plugin_dbui/TODO
+
4
−
4
View file @
6b9a472e
...
@@ -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
-
s
implified the javascript by using the xtype for store (jsonstore)
-
S
implified 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
This diff is collapsed.
Click to expand it.
static/plugin_dbui/docs/2_customize.odt
+
0
−
0
View file @
6b9a472e
No preview for this file type
This diff is collapsed.
Click to expand it.
static/plugin_dbui/docs/index.html
+
5
−
5
View file @
6b9a472e
...
@@ -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>
SQL
Field('category', 'string', notnull=True, unique=True),
<br>
Field('category', 'string', notnull=True, unique=True),
<br>
SQL
Field('note', 'text'))
<br><br>
Field('note', 'text'))
<br><br>
db.define_table('rpms',
<br>
db.define_table('rpms',
<br>
SQL
Field('rpm', 'string', notnull=True, unique=True),
<br>
Field('rpm', 'string', notnull=True, unique=True),
<br>
SQL
Field('id_category', db.rpmCategories, notnull=True),
<br>
Field('id_category', db.rpmCategories, notnull=True),
<br>
SQL
Field('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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment