I defined a couple of db tables as follows:

db.define_table('x',
  db.Field('name','string',requires=[IS_NOT_EMPTY(),IS_NOT_IN_DB
(db,'x.name')])
)

db.define_table('xinst',
  db.Field('x_id',db.x,requires=IS_IN_DB(db,'x.id','%(name)s')),
  db.Field('other','string')
)

I have some forms I'm displaying using
form=SQLFORM(db.xinst, ...)

As expected, there is a pulldown menu next to the x_id field with the
names of the x records in it. However, the pull-down is jammed all the
way to the left of the screen and the entry is only partially visible.
In other cases where I have multiple pull-downs, other pull-downs look
OK but the cross-referencing pull-down has this problem.

Has anybody ever seen this issue and have an idea of where to look for
the problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" 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