I have the following table:

db.define_table('logicalmachines',
                SQLField('physical_id',db.physicalmachines),
                SQLField
('description','string',length=50,unique=True),
                SQLField('description_long', 'string'),
                SQLField('last_audit_date','date'),
                SQLField('os', db.cpe),
                SQLField('dest_type','string',length=100),
                SQLField('reaction_time','string'),
                SQLField('other_software','string',length=500),
                SQLField('other_security','string',length=500))

and I would like to create form which will have combo (i mean html
SELECT)
to select machines by description, and after making choice, the whole
information about machine
have presented
(generated by SQLForm?) I tried to find some example how to do it, but
nothing similar found.
Could you help me?

Cheers,
mika
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to