## Copyright 2005 Luc Saffre ## This file is part of the Lino project. ## Lino is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## Lino is distributed in the hope that it will be useful, but WITHOUT ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public ## License for more details. ## You should have received a copy of the GNU General Public License ## along with Lino; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA from lino.forms import gui from lino.schemas.sprl import demo from lino.schemas.sprl.tables import Partners def main(): sess = demo.beginSession() ds = sess.query(Partners,"name firstName email phone city id") frm = gui.form() ds.setupForm(frm) frm.show() if __name__ == "__main__": gui.parse_args() main()
Refering articles:
- Form.addDataEntry() (code changes 19.01.05) — forms4.py can now skip between rows of the Partners table. The navigator looks primitive, but I'm glad that it works.
- lino.forms : data grid and sata entry forms work (code changes 18.01.05) — Wow, lino.forms advanced more than I expected for today:
forms3.py : a first data grid
forms4.py : a first data-entry form (navigator not finished)