just a suggestion, why not create the table for category.
e.g.
db.define_tables('category', 
    Field('name', 'string') )
db.define_tables('product', 
    Field('price', 'double'),
    Field('description', 'string'),
    Field('stock', 'integer),
    Field('name', 'string')
    Field('material_fabric', 'string'),
    Field('size', 'string'),
    Field('weight', 'double'),
    Field('category', 'reference category') )

then just use conditional method in view using jquery to show the field 
that match with category.

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to