I think, the problem is due to the following calls in gluon.sqlhtml.py (lines 
2050, 2072, and 2093), which does not include the optional parameter "fields"
        
                create_form = SQLFORM(table, **sqlformargs)
                view_form = SQLFORM(table, record, **sqlformargs) 
                update_form = SQLFORM(table, record, **sqlformargs)
                
So, I tried something like
                
                update_form = SQLFORM(table, record, fields=fields, 
**sqlformargs)

and this generates the ticket

        <type 'exceptions.AttributeError'> 'Field' object has no attribute 
'find'

        Version
        web2py™ Version 2.8.2-stable+timestamp.2013.11.28.13.54.07
        Python  Python 2.7.5: C:\Python27\python.exe (prefix: C:\Python27)
        Traceback (most recent call last):
          File "C:\web2py-src\gluon\restricted.py", line 217, in restricted
                exec ccode in environment
          File "C:/web2py-src/applications/Test/controllers/default.py", line 
77, in <module>
          File "C:\web2py-src\gluon\globals.py", line 372, in <lambda>
                self._caller = lambda f: f()
          File "C:\web2py-src\gluon\tools.py", line 3239, in f
                return action(*a, **b)
          File "C:/web2py-src/applications/Test/controllers/default.py", line 
20, in index
                grid = SQLFORM.grid(query, fields=fields)
          File "C:\web2py-src\gluon\sqlhtml.py", line 2093, in grid
                update_form = SQLFORM(table, record, fields=fields, 
**sqlformargs)
          File "C:\web2py-src\gluon\sqlhtml.py", line 1053, in __init__
                if fieldname.find('.') >= 0:
        AttributeError: 'Field' object has no attribute 'find'          
        
There must be something wrong in how I included the fields param here.


-- 
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