db.define_table('emp',
    Field('name') -- some of the data in this column has really long values.
)
 
 db.define_table('emp_details',
    Field('name'),requires=[IS_IN_DB(db,'employee.name')]),
    Field('details')
)
 
I'm using SQLFORM.grid to manage the data in the above tables. The 
SQLFORM.grid for the emp_details creates a dropdown list for the name 
column. Some of the data in this column are really lengthy and I can't 
actually see the whole value. How can I increase the width of the dropdown 
so I can see the whole value. can you please suggest?

-- 



Reply via email to